diff options
Diffstat (limited to 'drivers/net/wireless/b43/sdio.c')
-rw-r--r-- | drivers/net/wireless/b43/sdio.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/wireless/b43/sdio.c b/drivers/net/wireless/b43/sdio.c index a54fb2d29089..59a521800694 100644 --- a/drivers/net/wireless/b43/sdio.c +++ b/drivers/net/wireless/b43/sdio.c | |||
@@ -93,7 +93,7 @@ void b43_sdio_free_irq(struct b43_wldev *dev) | |||
93 | sdio->irq_handler = NULL; | 93 | sdio->irq_handler = NULL; |
94 | } | 94 | } |
95 | 95 | ||
96 | static int __devinit b43_sdio_probe(struct sdio_func *func, | 96 | static int b43_sdio_probe(struct sdio_func *func, |
97 | const struct sdio_device_id *id) | 97 | const struct sdio_device_id *id) |
98 | { | 98 | { |
99 | struct b43_sdio *sdio; | 99 | struct b43_sdio *sdio; |
@@ -171,7 +171,7 @@ out: | |||
171 | return error; | 171 | return error; |
172 | } | 172 | } |
173 | 173 | ||
174 | static void __devexit b43_sdio_remove(struct sdio_func *func) | 174 | static void b43_sdio_remove(struct sdio_func *func) |
175 | { | 175 | { |
176 | struct b43_sdio *sdio = sdio_get_drvdata(func); | 176 | struct b43_sdio *sdio = sdio_get_drvdata(func); |
177 | 177 | ||
@@ -193,7 +193,7 @@ static struct sdio_driver b43_sdio_driver = { | |||
193 | .name = "b43-sdio", | 193 | .name = "b43-sdio", |
194 | .id_table = b43_sdio_ids, | 194 | .id_table = b43_sdio_ids, |
195 | .probe = b43_sdio_probe, | 195 | .probe = b43_sdio_probe, |
196 | .remove = __devexit_p(b43_sdio_remove), | 196 | .remove = b43_sdio_remove, |
197 | }; | 197 | }; |
198 | 198 | ||
199 | int b43_sdio_init(void) | 199 | int b43_sdio_init(void) |