diff options
author | Michael Buesch <mb@bu3sch.de> | 2008-08-30 10:55:48 +0200 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-09-05 16:17:43 -0400 |
commit | e63e436326919dcc36e2bb242bc570257de70521 (patch) | |
tree | 37dd6b4c6637f0c94c38fdbdc6da4718c363ba56 /drivers/net/wireless/b43/phy_lp.h | |
parent | 3d0da7516441d41dbfcc2b2667d9b792d580e50b (diff) |
b43: Add LP-PHY template
This adds template code for the LP-PHY.
No actual functionality is implemented.
Signed-off-by: Michael Buesch <mb@bu3sch.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/b43/phy_lp.h')
-rw-r--r-- | drivers/net/wireless/b43/phy_lp.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/drivers/net/wireless/b43/phy_lp.h b/drivers/net/wireless/b43/phy_lp.h new file mode 100644 index 000000000000..e39a5436d8c0 --- /dev/null +++ b/drivers/net/wireless/b43/phy_lp.h @@ -0,0 +1,14 @@ +#ifndef LINUX_B43_PHY_LP_H_ +#define LINUX_B43_PHY_LP_H_ + +/* Definitions for the LP-PHY */ + +struct b43_phy_lp { + bool initialised; +}; + + +struct b43_phy_operations; +extern const struct b43_phy_operations b43_phyops_lp; + +#endif /* LINUX_B43_PHY_LP_H_ */ |