diff options
author | Rafał Miłecki <zajec5@gmail.com> | 2011-06-13 16:20:06 +0200 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-06-17 14:22:20 -0400 |
commit | d7520b1d2a9ffae94323ffac9dc37d92f656051f (patch) | |
tree | 3e970b184dd8f6e8c37ca36e61dfbc29e5ae0a64 /drivers/net/wireless/b43/phy_common.h | |
parent | 443c1a24710ce151874acdca7efb47622c098e80 (diff) | |
download | blackbird-op-linux-d7520b1d2a9ffae94323ffac9dc37d92f656051f.tar.gz blackbird-op-linux-d7520b1d2a9ffae94323ffac9dc37d92f656051f.zip |
b43: HT-PHY: add place for writing HT PHY support
This is totally broken plus we do not have specs for HT PHY yet. Just
introduce place for writing driver if we discover anything.
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/b43/phy_common.h')
-rw-r--r-- | drivers/net/wireless/b43/phy_common.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/wireless/b43/phy_common.h b/drivers/net/wireless/b43/phy_common.h index 2401bee8b081..47dcb800a3c3 100644 --- a/drivers/net/wireless/b43/phy_common.h +++ b/drivers/net/wireless/b43/phy_common.h @@ -194,6 +194,7 @@ struct b43_phy_a; struct b43_phy_g; struct b43_phy_n; struct b43_phy_lp; +struct b43_phy_ht; struct b43_phy { /* Hardware operation callbacks. */ @@ -216,6 +217,8 @@ struct b43_phy { struct b43_phy_n *n; /* LP-PHY specific information */ struct b43_phy_lp *lp; + /* HT-PHY specific information */ + struct b43_phy_ht *ht; }; /* Band support flags. */ |