diff options
author | Michael Buesch <mb@bu3sch.de> | 2008-08-30 12:55:48 +0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-09-06 00:17:43 +0400 |
commit | e63e436326919dcc36e2bb242bc570257de70521 (patch) | |
tree | 37dd6b4c6637f0c94c38fdbdc6da4718c363ba56 /drivers/net/wireless/b43/phy_common.c | |
parent | 3d0da7516441d41dbfcc2b2667d9b792d580e50b (diff) | |
download | linux-e63e436326919dcc36e2bb242bc570257de70521.tar.xz |
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_common.c')
-rw-r--r-- | drivers/net/wireless/b43/phy_common.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/net/wireless/b43/phy_common.c b/drivers/net/wireless/b43/phy_common.c index 4b6c944be042..b3762d8163c8 100644 --- a/drivers/net/wireless/b43/phy_common.c +++ b/drivers/net/wireless/b43/phy_common.c @@ -30,6 +30,7 @@ #include "phy_g.h" #include "phy_a.h" #include "phy_n.h" +#include "phy_lp.h" #include "b43.h" #include "main.h" @@ -54,7 +55,9 @@ int b43_phy_operations_setup(struct b43_wldev *dev) #endif break; case B43_PHYTYPE_LP: - /* FIXME: Not yet */ +#ifdef CONFIG_B43_PHY_LP + phy->ops = &b43_phyops_lp; +#endif break; } if (B43_WARN_ON(!phy->ops)) |