summaryrefslogtreecommitdiffstats
path: root/package/mac80211/patches/846-brcmsmac-remove-some-unnessessacry-casts-and-void-po.patch
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2012-06-01 21:17:04 +0000
committerHauke Mehrtens <hauke@hauke-m.de>2012-06-01 21:17:04 +0000
commitcedf84c3487ba24bf7d70accc485f39da0b59041 (patch)
treec391794e52e3af11532f2721da19f38882b6f471 /package/mac80211/patches/846-brcmsmac-remove-some-unnessessacry-casts-and-void-po.patch
parent1fb7419efb74dbe25666fe44f94d95b28bdc5e82 (diff)
downloadmaster-31e0f0ae-cedf84c3487ba24bf7d70accc485f39da0b59041.tar.gz
master-31e0f0ae-cedf84c3487ba24bf7d70accc485f39da0b59041.tar.bz2
master-31e0f0ae-cedf84c3487ba24bf7d70accc485f39da0b59041.zip
mac80211: brcmsmac: add some patches starting to add support for some more chips
SVN-Revision: 32020
Diffstat (limited to 'package/mac80211/patches/846-brcmsmac-remove-some-unnessessacry-casts-and-void-po.patch')
-rw-r--r--package/mac80211/patches/846-brcmsmac-remove-some-unnessessacry-casts-and-void-po.patch36
1 files changed, 36 insertions, 0 deletions
diff --git a/package/mac80211/patches/846-brcmsmac-remove-some-unnessessacry-casts-and-void-po.patch b/package/mac80211/patches/846-brcmsmac-remove-some-unnessessacry-casts-and-void-po.patch
new file mode 100644
index 0000000000..24c3e2356f
--- /dev/null
+++ b/package/mac80211/patches/846-brcmsmac-remove-some-unnessessacry-casts-and-void-po.patch
@@ -0,0 +1,36 @@
+--- a/drivers/net/wireless/brcm80211/brcmsmac/main.c
++++ b/drivers/net/wireless/brcm80211/brcmsmac/main.c
+@@ -4233,9 +4233,8 @@ static void brcms_c_radio_timer(void *ar
+ }
+
+ /* common low-level watchdog code */
+-static void brcms_b_watchdog(void *arg)
++static void brcms_b_watchdog(struct brcms_c_info *wlc)
+ {
+- struct brcms_c_info *wlc = (struct brcms_c_info *) arg;
+ struct brcms_hardware *wlc_hw = wlc->hw;
+
+ BCMMSG(wlc->wiphy, "wl%d\n", wlc_hw->unit);
+@@ -4256,10 +4255,8 @@ static void brcms_b_watchdog(void *arg)
+ }
+
+ /* common watchdog code */
+-static void brcms_c_watchdog(void *arg)
++static void brcms_c_watchdog(struct brcms_c_info *wlc)
+ {
+- struct brcms_c_info *wlc = (struct brcms_c_info *) arg;
+-
+ BCMMSG(wlc->wiphy, "wl%d\n", wlc->pub->unit);
+
+ if (!wlc->pub->up)
+@@ -4299,7 +4296,9 @@ static void brcms_c_watchdog(void *arg)
+
+ static void brcms_c_watchdog_by_timer(void *arg)
+ {
+- brcms_c_watchdog(arg);
++ struct brcms_c_info *wlc = (struct brcms_c_info *) arg;
++
++ brcms_c_watchdog(wlc);
+ }
+
+ static bool brcms_c_timers_init(struct brcms_c_info *wlc, int unit)