aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/libertas/hostcmd.h
diff options
context:
space:
mode:
authorDavid Woodhouse <dwmw2@infradead.org>2007-12-11 18:56:42 -0500
committerDavid S. Miller <davem@davemloft.net>2008-01-28 18:06:53 -0500
commit23a397ac821ab0aa263bda47131bb0628e49101a (patch)
treea631b5bb2b89885519791b46f712b04407692d6a /drivers/net/wireless/libertas/hostcmd.h
parente7240acae372727aa8eb3a67ca7b189dd261136a (diff)
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.h12
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 {
626 u8 prec[ETH_ALEN]; 626 u8 prec[ETH_ALEN];
627} __attribute__ ((packed)); 627} __attribute__ ((packed));
628 628
629
630struct cmd_ds_mesh_config {
631 struct cmd_header hdr;
632
633 __le16 action;
634 __le16 channel;
635 __le16 type;
636 __le16 length;
637 u8 data[128]; /* last position reserved */
638} __attribute__ ((packed));
639
640
629struct cmd_ds_mesh_access { 641struct cmd_ds_mesh_access {
630 struct cmd_header hdr; 642 struct cmd_header hdr;
631 643