summaryrefslogtreecommitdiffstats
path: root/package/mac80211/patches/840-b43-bus_fix_memory_corruption_when_setting_drivers.patch
diff options
context:
space:
mode:
Diffstat (limited to 'package/mac80211/patches/840-b43-bus_fix_memory_corruption_when_setting_drivers.patch')
-rw-r--r--package/mac80211/patches/840-b43-bus_fix_memory_corruption_when_setting_drivers.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/package/mac80211/patches/840-b43-bus_fix_memory_corruption_when_setting_drivers.patch b/package/mac80211/patches/840-b43-bus_fix_memory_corruption_when_setting_drivers.patch
deleted file mode 100644
index 77a48dbc1..000000000
--- a/package/mac80211/patches/840-b43-bus_fix_memory_corruption_when_setting_drivers.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-Fixes bug described in:
-https://bugzilla.kernel.org/show_bug.cgi?id=39172
-
-Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
----
-John: this is trivial and fixes quite ugly memory (linked list exactly)
-corruption. I believe this fix should be taken for 3.1.
----
- drivers/net/wireless/b43/bus.c | 2 ++
- 1 files changed, 2 insertions(+), 0 deletions(-)
-
---- a/drivers/net/wireless/b43/bus.c
-+++ b/drivers/net/wireless/b43/bus.c
-@@ -244,10 +244,12 @@ void b43_bus_set_wldev(struct b43_bus_de
- #ifdef CONFIG_B43_BCMA
- case B43_BUS_BCMA:
- bcma_set_drvdata(dev->bdev, wldev);
-+ break;
- #endif
- #ifdef CONFIG_B43_SSB
- case B43_BUS_SSB:
- ssb_set_drvdata(dev->sdev, wldev);
-+ break;
- #endif
- }
- }