diff options
author | Michael Buesch <mb@bu3sch.de> | 2008-08-30 04:55:48 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-09-05 16:17:43 -0400 |
commit | e63e436326919dcc36e2bb242bc570257de70521 (patch) | |
tree | 37dd6b4c6637f0c94c38fdbdc6da4718c363ba56 /drivers/net/wireless/b43/phy_common.c | |
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_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 4b6c944be04..b3762d8163c 100644 --- a/drivers/net/wireless/b43/phy_common.c +++ b/drivers/net/wireless/b43/phy_common.c | |||
@@ -30,6 +30,7 @@ | |||
30 | #include "phy_g.h" | 30 | #include "phy_g.h" |
31 | #include "phy_a.h" | 31 | #include "phy_a.h" |
32 | #include "phy_n.h" | 32 | #include "phy_n.h" |
33 | #include "phy_lp.h" | ||
33 | #include "b43.h" | 34 | #include "b43.h" |
34 | #include "main.h" | 35 | #include "main.h" |
35 | 36 | ||
@@ -54,7 +55,9 @@ int b43_phy_operations_setup(struct b43_wldev *dev) | |||
54 | #endif | 55 | #endif |
55 | break; | 56 | break; |
56 | case B43_PHYTYPE_LP: | 57 | case B43_PHYTYPE_LP: |
57 | /* FIXME: Not yet */ | 58 | #ifdef CONFIG_B43_PHY_LP |
59 | phy->ops = &b43_phyops_lp; | ||
60 | #endif | ||
58 | break; | 61 | break; |
59 | } | 62 | } |
60 | if (B43_WARN_ON(!phy->ops)) | 63 | if (B43_WARN_ON(!phy->ops)) |