diff options
author | Dan Williams <dcbw@redhat.com> | 2007-12-11 22:54:15 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-29 00:06:50 +0100 |
commit | 2dd4b26264d48f10e802cc9f2d75542be5a3c7fa (patch) | |
tree | 2d79fa1cde5146df36c2add9c357e404512def94 /drivers/net/wireless/libertas/hostcmd.h | |
parent | libertas: convert DATA_RATE to a direct command (diff) | |
download | linux-2dd4b26264d48f10e802cc9f2d75542be5a3c7fa.tar.xz linux-2dd4b26264d48f10e802cc9f2d75542be5a3c7fa.zip |
libertas: convert RF_CHANNEL to a direct command
Signed-off-by: Dan Williams <dcbw@redhat.com>
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 | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/drivers/net/wireless/libertas/hostcmd.h b/drivers/net/wireless/libertas/hostcmd.h index d51010c47b5b..7acb65116678 100644 --- a/drivers/net/wireless/libertas/hostcmd.h +++ b/drivers/net/wireless/libertas/hostcmd.h @@ -386,11 +386,13 @@ struct cmd_ds_802_11_inactivity_timeout { }; struct cmd_ds_802_11_rf_channel { + struct cmd_header hdr; + __le16 action; - __le16 currentchannel; - __le16 rftype; - __le16 reserved; - u8 channellist[32]; + __le16 channel; + __le16 rftype; /* unused */ + __le16 reserved; /* unused */ + u8 channellist[32]; /* unused */ }; struct cmd_ds_802_11_rssi { |