diff options
author | David Woodhouse <dwmw2@infradead.org> | 2007-12-11 18:56:42 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 15:06:53 -0800 |
commit | 23a397ac821ab0aa263bda47131bb0628e49101a (patch) | |
tree | a631b5bb2b89885519791b46f712b04407692d6a /drivers/net/wireless/libertas/hostcmd.h | |
parent | e7240acae372727aa8eb3a67ca7b189dd261136a (diff) | |
download | blackbird-obmc-linux-23a397ac821ab0aa263bda47131bb0628e49101a.tar.gz blackbird-obmc-linux-23a397ac821ab0aa263bda47131bb0628e49101a.zip |
libertas: add lbs_mesh sysfs attribute for enabling mesh
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/libertas/hostcmd.h')
-rw-r--r-- | drivers/net/wireless/libertas/hostcmd.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/drivers/net/wireless/libertas/hostcmd.h b/drivers/net/wireless/libertas/hostcmd.h index 7acb65116678..aab5d64f32d8 100644 --- a/drivers/net/wireless/libertas/hostcmd.h +++ b/drivers/net/wireless/libertas/hostcmd.h @@ -626,6 +626,18 @@ struct cmd_ds_fwt_access { u8 prec[ETH_ALEN]; } __attribute__ ((packed)); + +struct cmd_ds_mesh_config { + struct cmd_header hdr; + + __le16 action; + __le16 channel; + __le16 type; + __le16 length; + u8 data[128]; /* last position reserved */ +} __attribute__ ((packed)); + + struct cmd_ds_mesh_access { struct cmd_header hdr; |