aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/rt2x00/rt2500pci.c
diff options
context:
space:
mode:
authorJohannes Berg <johannes@sipsolutions.net>2007-12-28 08:32:58 -0500
committerDavid S. Miller <davem@davemloft.net>2008-01-28 18:09:43 -0500
commit471b3efdfccc257591331724145f8ccf8b3217e1 (patch)
treec9e576442c7b62c8c667ae1046e560323f0821fd /drivers/net/wireless/rt2x00/rt2500pci.c
parent2bc454b0b30b3645d114689b64321cb49be99923 (diff)
mac80211: add unified BSS configuration
This patch (based on Ron Rindjunsky's) creates a framework for a unified way to pass BSS configuration to drivers that require the information, e.g. for implementing power save mode. This patch introduces new ieee80211_bss_conf structure that is passed to the driver via the new bss_info_changed() callback when the BSS configuration changes. This new BSS configuration infrastructure adds the following new features: * drivers are notified of their association AID * drivers are notified of association status and replaces the erp_ie_changed() callback. The patch also does the relevant driver updates for the latter change. Signed-off-by: Ron Rindjunsky <ron.rindjunsky@intel.com> Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/rt2x00/rt2500pci.c')
-rw-r--r--drivers/net/wireless/rt2x00/rt2500pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2500pci.c b/drivers/net/wireless/rt2x00/rt2500pci.c
index 206b50ff831f..e874fdcae204 100644
--- a/drivers/net/wireless/rt2x00/rt2500pci.c
+++ b/drivers/net/wireless/rt2x00/rt2500pci.c
@@ -1835,7 +1835,7 @@ static const struct ieee80211_ops rt2500pci_mac80211_ops = {
1835 .configure_filter = rt2500pci_configure_filter, 1835 .configure_filter = rt2500pci_configure_filter,
1836 .get_stats = rt2x00mac_get_stats, 1836 .get_stats = rt2x00mac_get_stats,
1837 .set_retry_limit = rt2500pci_set_retry_limit, 1837 .set_retry_limit = rt2500pci_set_retry_limit,
1838 .erp_ie_changed = rt2x00mac_erp_ie_changed, 1838 .bss_info_changed = rt2x00mac_bss_info_changed,
1839 .conf_tx = rt2x00mac_conf_tx, 1839 .conf_tx = rt2x00mac_conf_tx,
1840 .get_tx_stats = rt2x00mac_get_tx_stats, 1840 .get_tx_stats = rt2x00mac_get_tx_stats,
1841 .get_tsf = rt2500pci_get_tsf, 1841 .get_tsf = rt2500pci_get_tsf,