From cf51d162a58c5c56aed7b0b45e5270a86833de08 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Wed, 20 May 2015 11:50:01 +0200 Subject: [PATCH] RTL8188EU: update to RTL8188EU-3091828 Signed-off-by: Stephan Raue --- packages/linux-drivers/RTL8188EU/package.mk | 2 +- .../RTL8188EU/patches/RTL8188EU-gcc-4.9.patch | 11 -------- .../patches/RTL8188EU-kernel-4.0.patch | 25 ------------------- 3 files changed, 1 insertion(+), 37 deletions(-) delete mode 100644 packages/linux-drivers/RTL8188EU/patches/RTL8188EU-gcc-4.9.patch delete mode 100644 packages/linux-drivers/RTL8188EU/patches/RTL8188EU-kernel-4.0.patch diff --git a/packages/linux-drivers/RTL8188EU/package.mk b/packages/linux-drivers/RTL8188EU/package.mk index f1071b1f8f..48dc54a9c3 100644 --- a/packages/linux-drivers/RTL8188EU/package.mk +++ b/packages/linux-drivers/RTL8188EU/package.mk @@ -17,7 +17,7 @@ ################################################################################ PKG_NAME="RTL8188EU" -PKG_VERSION="fcc9034" +PKG_VERSION="3091828" PKG_REV="1" PKG_ARCH="any" PKG_LICENSE="GPL" diff --git a/packages/linux-drivers/RTL8188EU/patches/RTL8188EU-gcc-4.9.patch b/packages/linux-drivers/RTL8188EU/patches/RTL8188EU-gcc-4.9.patch deleted file mode 100644 index 624e8dd9aa..0000000000 --- a/packages/linux-drivers/RTL8188EU/patches/RTL8188EU-gcc-4.9.patch +++ /dev/null @@ -1,11 +0,0 @@ -diff -Naur RTL8188EU-fcc9034/os_dep/usb_intf.c RTL8188EU-fcc9034.patch/os_dep/usb_intf.c ---- RTL8188EU-fcc9034/os_dep/usb_intf.c 2014-03-25 15:05:52.000000000 +0100 -+++ RTL8188EU-fcc9034.patch/os_dep/usb_intf.c 2014-04-28 17:42:46.059538024 +0200 -@@ -865,7 +865,6 @@ - RT_TRACE(_module_hci_intfs_c_, _drv_err_, ("+rtw_drv_entry\n")); - - DBG_88E(DRV_NAME " driver version=%s\n", DRIVERVERSION); -- DBG_88E("build time: %s %s\n", __DATE__, __TIME__); - - rtw_suspend_lock_init(); - diff --git a/packages/linux-drivers/RTL8188EU/patches/RTL8188EU-kernel-4.0.patch b/packages/linux-drivers/RTL8188EU/patches/RTL8188EU-kernel-4.0.patch deleted file mode 100644 index 937916d45c..0000000000 --- a/packages/linux-drivers/RTL8188EU/patches/RTL8188EU-kernel-4.0.patch +++ /dev/null @@ -1,25 +0,0 @@ -diff -Naur RTL8188EU-fcc9034/os_dep/rtw_android.c RTL8188EU-fcc9034.patch/os_dep/rtw_android.c ---- RTL8188EU-fcc9034/os_dep/rtw_android.c 2014-03-25 15:05:52.000000000 +0100 -+++ RTL8188EU-fcc9034.patch/os_dep/rtw_android.c 2015-04-04 20:44:25.386732963 +0200 -@@ -20,6 +20,7 @@ - - #include - #include -+#include - - #include - #include -@@ -80,8 +81,13 @@ - { - int cmd_num; - for (cmd_num = 0; cmd_num < ANDROID_WIFI_CMD_MAX; cmd_num++) -+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 0, 0)) -+ if (!strncasecmp(cmdstr , android_wifi_cmd_str[cmd_num], -+ strlen(android_wifi_cmd_str[cmd_num]))) -+#else - if (0 == strnicmp(cmdstr , android_wifi_cmd_str[cmd_num], - strlen(android_wifi_cmd_str[cmd_num]))) -+#endif - break; - return cmd_num; - }