aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/brcm80211/brcmsmac
diff options
context:
space:
mode:
authorBill Pemberton <wfp5p@virginia.edu>2012-12-03 09:56:31 -0500
committerJohn W. Linville <linville@tuxdriver.com>2012-12-06 15:04:56 -0500
commitfcff0c0887f7286eda3ce47d8934acb3a78e1076 (patch)
tree06eaa3454c490b512eee86f52e59d9254ae421d6 /drivers/net/wireless/brcm80211/brcmsmac
parent157c9436e6e740b0fb3f3c10da0e2f68731a8052 (diff)
brcm80211: remove __dev* attributes
CONFIG_HOTPLUG is going away as an option. As result the __dev* markings will be going away. Remove use of __devinit, __devexit_p, __devinitdata, __devinitconst, and __devexit. Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Cc: Brett Rudley <brudley@broadcom.com> Cc: Roland Vossen <rvossen@broadcom.com> Cc: Arend van Spriel <arend@broadcom.com> Cc: Franky (Zhenhui) Lin <frankyl@broadcom.com> Cc: Kan Yan <kanyan@broadcom.com> Cc: brcm80211-dev-list@broadcom.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/brcm80211/brcmsmac')
-rw-r--r--drivers/net/wireless/brcm80211/brcmsmac/mac80211_if.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/brcm80211/brcmsmac/mac80211_if.c b/drivers/net/wireless/brcm80211/brcmsmac/mac80211_if.c
index 85dbaf8ac997..02d27eacc0e2 100644
--- a/drivers/net/wireless/brcm80211/brcmsmac/mac80211_if.c
+++ b/drivers/net/wireless/brcm80211/brcmsmac/mac80211_if.c
@@ -1099,7 +1099,7 @@ fail:
1099 * 1099 *
1100 * Perimeter lock is initialized in the course of this function. 1100 * Perimeter lock is initialized in the course of this function.
1101 */ 1101 */
1102static int __devinit brcms_bcma_probe(struct bcma_device *pdev) 1102static int brcms_bcma_probe(struct bcma_device *pdev)
1103{ 1103{
1104 struct brcms_info *wl; 1104 struct brcms_info *wl;
1105 struct ieee80211_hw *hw; 1105 struct ieee80211_hw *hw;
@@ -1165,7 +1165,7 @@ static struct bcma_driver brcms_bcma_driver = {
1165 .probe = brcms_bcma_probe, 1165 .probe = brcms_bcma_probe,
1166 .suspend = brcms_suspend, 1166 .suspend = brcms_suspend,
1167 .resume = brcms_resume, 1167 .resume = brcms_resume,
1168 .remove = __devexit_p(brcms_remove), 1168 .remove = brcms_remove,
1169 .id_table = brcms_coreid_table, 1169 .id_table = brcms_coreid_table,
1170}; 1170};
1171 1171