Commit Graph

10 Commits

Author SHA1 Message Date
MilhouseVH
f93e5f0abc Fix build with kernel 4.12-rc1 2017-05-18 14:03:47 +01:00
CGarces
6563172295 Add kernel-4.7 and 4.8 compatibility 2016-11-01 12:12:21 +01:00
Reynaldo Gil Pons
4955a5a8d6 corrected interface name 2016-10-13 09:30:00 -04:00
Kenneth Jorgensen
83638179d7 Added support for PLANEX GW-300S Katana. 2016-09-27 15:22:00 +09:00
jeremyb31
56ccb6b05c Add TP-Link devices 2016-07-11 16:13:44 -05:00
jeremyb31
16f07fe6fd Update usb_intf.c 2016-07-11 16:09:09 -05:00
jeremyb31
f0c1b5cb1c Update usb_intf.c 2016-07-10 08:25:30 -05:00
Magnus Bergmark
6793baedf5
Fix strnicmp not defined in Kernel >= 4.0
This particular fix is all over the internet, as patches posted on
mailing lists, package maintainer's mirrors, etc.

I don't know the full origin of it, but it works. It also makes sense. I
found a quote regarding it here:

http://comments.gmane.org/gmane.linux.drivers.driver-project.devel/71438
> [...] patched so it will compile against kernels that no longer
> provide the old procfs API and with calls to strnicmp() replaced with
> strncasecmp().

Here's an example of the patch in the wild:
9cf1f08f9a/8192cu-dkms/RTL8192CU-kernel-4.0.patch

Note that the sources mentioned above all talk about the more common
8192cu driver, but the change is the same as both drivers share the
majority of the code with each other.
<speculation>
I guess this is part of the reason why the hardware makers don't publish
updated drivers; they've copy-pasted it everywhere and patching them all
is a pain for them.
</speculation>
2015-11-10 23:23:22 +01:00
Magnus Bergmark
416453cadc
No more NULL dereference and kernel panic on current kernels
Found patch on the web:
  http://users.telenet.be/x86_64/Patches/rtl8192eu-k3.13.patch

Before patch, kernel panic due to a NULL dereference in
rtw_ndev_notifier_register; this patch solves that problem by not using
these methods on kernel versions after a certain number, so it leads me
to believe that this patch is meant to make the driver compatible with
newer kernel versions.
2015-08-18 21:10:30 +02:00
Magnus Bergmark
1387cf623d
The official RTL8192EU linux driver from D-Link Australia
Version information: 20140812_rtl8192EU_linux_v4.3.1.1_11320
  2014-08-12
  version 4.3.1.1_11320
Source:
  ftp://files.dlink.com.au/products/DWA-131/REV_E/Drivers/DWA-131_Linux_driver_v4.3.1.1.zip

This version does not currently work on newer kernels, but it does
contain USB ID 2001:3319, which a lot of other repos in GitHub does not.
2015-08-18 21:03:11 +02:00