blob: 68bc00a7458eec5ef39c1680bda7f1ca596690d5 [file] [log] [blame]
Rafał Miłecki482f0532011-05-18 02:06:36 +02001#ifndef B43_BUS_H_
2#define B43_BUS_H_
3
4enum b43_bus_type {
5 B43_BUS_SSB,
6};
7
8struct b43_bus_dev {
9 enum b43_bus_type bus_type;
10 union {
11 struct ssb_device *sdev;
12 };
13};
14
15struct b43_bus_dev *b43_bus_dev_ssb_init(struct ssb_device *sdev);
16
17#endif /* B43_BUS_H_ */