diff options
author | Rafał Miłecki <zajec5@gmail.com> | 2011-05-08 18:21:18 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-05-10 15:54:50 -0400 |
commit | 5ee9c6afcb72eb41c3607e424c3b969f8c56031b (patch) | |
tree | 06d60546b7c52401ce9c3a87e569237728fbd711 | |
parent | b53575ecf939a4f752de87eabf1adbcfa4478a6c (diff) |
b43: trivial: include ssb word in ssb specific functions
This can be helpful when we decide to add support for other buses.
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | drivers/net/wireless/b43/main.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/wireless/b43/main.c b/drivers/net/wireless/b43/main.c index 70838e825341..f7582c096f8d 100644 --- a/drivers/net/wireless/b43/main.c +++ b/drivers/net/wireless/b43/main.c | |||
@@ -4958,7 +4958,7 @@ out: | |||
4958 | return err; | 4958 | return err; |
4959 | } | 4959 | } |
4960 | 4960 | ||
4961 | static int b43_probe(struct ssb_device *dev, const struct ssb_device_id *id) | 4961 | static int b43_ssb_probe(struct ssb_device *dev, const struct ssb_device_id *id) |
4962 | { | 4962 | { |
4963 | struct b43_wl *wl; | 4963 | struct b43_wl *wl; |
4964 | int err; | 4964 | int err; |
@@ -4996,7 +4996,7 @@ static int b43_probe(struct ssb_device *dev, const struct ssb_device_id *id) | |||
4996 | return err; | 4996 | return err; |
4997 | } | 4997 | } |
4998 | 4998 | ||
4999 | static void b43_remove(struct ssb_device *dev) | 4999 | static void b43_ssb_remove(struct ssb_device *dev) |
5000 | { | 5000 | { |
5001 | struct b43_wl *wl = ssb_get_devtypedata(dev); | 5001 | struct b43_wl *wl = ssb_get_devtypedata(dev); |
5002 | struct b43_wldev *wldev = ssb_get_drvdata(dev); | 5002 | struct b43_wldev *wldev = ssb_get_drvdata(dev); |
@@ -5039,8 +5039,8 @@ void b43_controller_restart(struct b43_wldev *dev, const char *reason) | |||
5039 | static struct ssb_driver b43_ssb_driver = { | 5039 | static struct ssb_driver b43_ssb_driver = { |
5040 | .name = KBUILD_MODNAME, | 5040 | .name = KBUILD_MODNAME, |
5041 | .id_table = b43_ssb_tbl, | 5041 | .id_table = b43_ssb_tbl, |
5042 | .probe = b43_probe, | 5042 | .probe = b43_ssb_probe, |
5043 | .remove = b43_remove, | 5043 | .remove = b43_ssb_remove, |
5044 | }; | 5044 | }; |
5045 | 5045 | ||
5046 | static void b43_print_driverinfo(void) | 5046 | static void b43_print_driverinfo(void) |