summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuis R. Rodriguez <mcgrof@do-not-panic.com>2013-08-12 19:47:58 -0700
committerLuis R. Rodriguez <mcgrof@do-not-panic.com>2013-08-12 19:47:58 -0700
commit521609b14db694e898695f29eb1b36b386efba9a (patch)
tree59ccb86a49cd0f8eeb43c071462edf536741642f
parentf6d29e526838e9aed3a7f9680b359b821d6bb0bb (diff)
backports: fix ath5k multicast patch context
The ath5k driver was patched on v3.11-rc4 with the following fix which threw off a backport patch. mcgrof@garbanzo ~/linux-stable (git::master)$ git describe --contains \ f287cbd01f2e8e1b325b96233c373619c2d25ee2 v3.11-rc4~5^2~27^2^2~23 commit f287cbd01f2e8e1b325b96233c373619c2d25ee2 Author: Bob Copeland <me@bobcopeland.com> Date: Thu Jul 11 09:19:13 2013 -0400 ath5k: fix extra set bit in multicast mask Bit 32 was always set which looks to have been accidental, according to git history. Signed-off-by: Bob Copeland <me@bobcopeland.com> Signed-off-by: John W. Linville <linville@tuxdriver.com> Signed-off-by: Luis R. Rodriguez <mcgrof@do-not-panic.com>
-rw-r--r--patches/collateral-evolutions/network/25-multicast-list_head/drivers_net_wireless_ath_ath5k_mac80211-ops.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/patches/collateral-evolutions/network/25-multicast-list_head/drivers_net_wireless_ath_ath5k_mac80211-ops.patch b/patches/collateral-evolutions/network/25-multicast-list_head/drivers_net_wireless_ath_ath5k_mac80211-ops.patch
index 485ab8bd..741c49ae 100644
--- a/patches/collateral-evolutions/network/25-multicast-list_head/drivers_net_wireless_ath_ath5k_mac80211-ops.patch
+++ b/patches/collateral-evolutions/network/25-multicast-list_head/drivers_net_wireless_ath_ath5k_mac80211-ops.patch
@@ -19,7 +19,7 @@
+#endif
mfilt[0] = 0;
- mfilt[1] = 1;
+ mfilt[1] = 0;
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,35))
netdev_hw_addr_list_for_each(ha, mc_list) {