aboutsummaryrefslogtreecommitdiffstats
path: root/package/broadcom-wl/patches/003-compat-2.6.35.patch
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2013-06-21 16:54:37 +0000
committerJohn Crispin <john@openwrt.org>2013-06-21 16:54:37 +0000
commit4ebf19b48fafc8d94e14e4ba779969613b241a6a (patch)
tree9918f890a8915023b49ea30948beb5d048c333fa /package/broadcom-wl/patches/003-compat-2.6.35.patch
parent44b1688e6c7b4f16f7165fbd560e1183aef69090 (diff)
downloadupstream-4ebf19b48fafc8d94e14e4ba779969613b241a6a.tar.gz
upstream-4ebf19b48fafc8d94e14e4ba779969613b241a6a.tar.bz2
upstream-4ebf19b48fafc8d94e14e4ba779969613b241a6a.zip
packages: clean up the package folder
Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 37007
Diffstat (limited to 'package/broadcom-wl/patches/003-compat-2.6.35.patch')
-rw-r--r--package/broadcom-wl/patches/003-compat-2.6.35.patch39
1 files changed, 0 insertions, 39 deletions
diff --git a/package/broadcom-wl/patches/003-compat-2.6.35.patch b/package/broadcom-wl/patches/003-compat-2.6.35.patch
deleted file mode 100644
index 89b665371d..0000000000
--- a/package/broadcom-wl/patches/003-compat-2.6.35.patch
+++ /dev/null
@@ -1,39 +0,0 @@
---- a/driver/wl_linux.c
-+++ b/driver/wl_linux.c
-@@ -2082,7 +2082,11 @@ static void
- _wl_set_multicast_list(struct net_device *dev)
- {
- wl_info_t *wl;
-+#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,34)
- struct dev_mc_list *mclist;
-+#else
-+ struct netdev_hw_addr *ha;
-+#endif
- int i;
-
- if (!dev)
-@@ -2098,14 +2102,24 @@ _wl_set_multicast_list(struct net_device
- wl->pub->allmulti = (dev->flags & IFF_ALLMULTI)? TRUE: FALSE;
-
- /* copy the list of multicasts into our private table */
-+#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,34)
- for (i = 0, mclist = dev->mc_list; mclist && (i < dev->mc_count);
- i++, mclist = mclist->next) {
-+#else
-+ i = 0;
-+ netdev_for_each_mc_addr(ha, dev) {
-+#endif
- if (i >= MAXMULTILIST) {
- wl->pub->allmulti = TRUE;
- i = 0;
- break;
- }
-+#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,34)
- wl->pub->multicast[i] = *((struct ether_addr*) mclist->dmi_addr);
-+#else
-+ wl->pub->multicast[i] = *((struct ether_addr*) ha->addr);
-+ i++;
-+#endif
- }
- wl->pub->nmulticast = i;
- wlc_set(wl->wlc, WLC_SET_PROMISC, (dev->flags & IFF_PROMISC));