diff options
author | Rafał Miłecki <zajec5@gmail.com> | 2011-05-17 20:06:36 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-06-01 15:10:56 -0400 |
commit | 482f05386218a028309a71ad36066ee64b7a820d (patch) | |
tree | 9883faaf44a9766cd97b550178018ebd570be60b /drivers/net/wireless/b43/b43.h | |
parent | aa63418aa72e4468838eea457a123057b1c7cd11 (diff) |
b43: add bus device abstraction layer
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/b43/b43.h')
-rw-r--r-- | drivers/net/wireless/b43/b43.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/wireless/b43/b43.h b/drivers/net/wireless/b43/b43.h index 25a78cfb7d15..bb81ebcf512e 100644 --- a/drivers/net/wireless/b43/b43.h +++ b/drivers/net/wireless/b43/b43.h | |||
@@ -11,6 +11,7 @@ | |||
11 | #include "debugfs.h" | 11 | #include "debugfs.h" |
12 | #include "leds.h" | 12 | #include "leds.h" |
13 | #include "rfkill.h" | 13 | #include "rfkill.h" |
14 | #include "bus.h" | ||
14 | #include "lo.h" | 15 | #include "lo.h" |
15 | #include "phy_common.h" | 16 | #include "phy_common.h" |
16 | 17 | ||
@@ -707,7 +708,8 @@ enum { | |||
707 | 708 | ||
708 | /* Data structure for one wireless device (802.11 core) */ | 709 | /* Data structure for one wireless device (802.11 core) */ |
709 | struct b43_wldev { | 710 | struct b43_wldev { |
710 | struct ssb_device *sdev; | 711 | struct ssb_device *sdev; /* TODO: remove when b43_bus_dev is ready */ |
712 | struct b43_bus_dev *dev; | ||
711 | struct b43_wl *wl; | 713 | struct b43_wl *wl; |
712 | 714 | ||
713 | /* The device initialization status. | 715 | /* The device initialization status. |