aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging
diff options
context:
space:
mode:
authorTim Gardner <tim.gardner@canonical.com>2009-04-29 17:01:42 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2009-06-19 14:00:38 -0400
commit24b8a9dfc7746273bde5a2030e4f16391251e830 (patch)
treebecf5341b8e0c922da5a699fce81b9d8a5333ac5 /drivers/staging
parentdd68e1b4ff71a0c6221bd9d02a374178e7dff6f9 (diff)
Staging: winbond: mac80211 - unify config_interface and bss_info_changed
The commit 'mac80211: unify config_interface and bss_info_changed' from Johannes Berg <johannes@sipsolutions.net> removed the config_interface structure tag from struct ieee80211_ops. The BSSID detection functionality migrated to ieee80211_ops.bss_info_changed. Since wbsoft_config_interface() was largely empty, there wasn't much to do other then to remove the function itself. There is currently no support for BSSID change detection. Signed-off-by: Tim Gardner <tim.gardner@canonical.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging')
-rw-r--r--drivers/staging/winbond/wbusb.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/drivers/staging/winbond/wbusb.c b/drivers/staging/winbond/wbusb.c
index c46ff4717b1..745279c528a 100644
--- a/drivers/staging/winbond/wbusb.c
+++ b/drivers/staging/winbond/wbusb.c
@@ -264,14 +264,6 @@ static int wbsoft_config(struct ieee80211_hw *dev, u32 changed)
264 return 0; 264 return 0;
265} 265}
266 266
267static int wbsoft_config_interface(struct ieee80211_hw *dev,
268 struct ieee80211_vif *vif,
269 struct ieee80211_if_conf *conf)
270{
271 printk("wbsoft_config_interface called\n");
272 return 0;
273}
274
275static u64 wbsoft_get_tsf(struct ieee80211_hw *dev) 267static u64 wbsoft_get_tsf(struct ieee80211_hw *dev)
276{ 268{
277 printk("wbsoft_get_tsf called\n"); 269 printk("wbsoft_get_tsf called\n");
@@ -285,7 +277,6 @@ static const struct ieee80211_ops wbsoft_ops = {
285 .add_interface = wbsoft_add_interface, 277 .add_interface = wbsoft_add_interface,
286 .remove_interface = wbsoft_remove_interface, 278 .remove_interface = wbsoft_remove_interface,
287 .config = wbsoft_config, 279 .config = wbsoft_config,
288 .config_interface = wbsoft_config_interface,
289 .configure_filter = wbsoft_configure_filter, 280 .configure_filter = wbsoft_configure_filter,
290 .get_stats = wbsoft_get_stats, 281 .get_stats = wbsoft_get_stats,
291 .get_tx_stats = wbsoft_get_tx_stats, 282 .get_tx_stats = wbsoft_get_tx_stats,