kernel-ark/drivers/net/wireless/b43legacy
Johannes Berg 1ed32e4fc8 mac80211: remove struct ieee80211_if_init_conf
All its members (vif, mac_addr, type) are now available
in the vif struct directly, so we can pass that instead
of the conf struct. I generated this patch (except the
mac80211 and header file changes) with this semantic
patch:

@@
identifier conf, fn, hw;
type tp;
@@
tp fn(struct ieee80211_hw *hw,
-struct ieee80211_if_init_conf *conf)
+struct ieee80211_vif *vif)
{
<...
(
-conf->type
+vif->type
|
-conf->mac_addr
+vif->addr
|
-conf->vif
+vif
)
...>
}

Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
2009-12-28 16:55:07 -05:00
..
b43legacy.h
debugfs.c
debugfs.h
dma.c
dma.h
ilt.c
ilt.h
Kconfig
leds.c
leds.h
main.c mac80211: remove struct ieee80211_if_init_conf 2009-12-28 16:55:07 -05:00
main.h
Makefile
phy.c
phy.h
pio.c
pio.h
radio.c
radio.h
rfkill.c b43legacy: avoid PPC fault during resume 2009-12-04 13:28:50 -05:00
rfkill.h
sysfs.c
sysfs.h
xmit.c
xmit.h