b43: add bus device abstraction layer
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / net / wireless / b43 / bus.h
blob68bc00a7458eec5ef39c1680bda7f1ca596690d5
1 #ifndef B43_BUS_H_
2 #define B43_BUS_H_
4 enum b43_bus_type {
5 B43_BUS_SSB,
6 };
8 struct b43_bus_dev {
9 enum b43_bus_type bus_type;
10 union {
11 struct ssb_device *sdev;
15 struct b43_bus_dev *b43_bus_dev_ssb_init(struct ssb_device *sdev);
17 #endif /* B43_BUS_H_ */