diff options
author | Luis Carlos Cobo <luisca@cozybit.com> | 2007-05-25 13:53:26 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2007-06-11 14:28:41 -0400 |
commit | 90e8eafc93ed159846bb7126af8502f2a8570a11 (patch) | |
tree | a949978a5a7d199953f9876672e202dffeba40b8 /drivers/net/wireless/libertas/cmd.c | |
parent | 7db283c914457dbeb72878df0641f4a5e05d75fa (diff) |
[PATCH] libertas: updated mesh commands for 5.220.9.p11
Updated commands fwt_add and fwt_list, bt_list.
New commands: bt_get_invert, bt_set_invert, to invert the blinding table,
i.e., receive only frames from nodes listed in the BT.
This patch needs/is needed for firmware 5.220.9.p11.
Signed-off-by: Luis Carlos Cobo <luisca@cozybit.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/libertas/cmd.c')
-rw-r--r-- | drivers/net/wireless/libertas/cmd.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/net/wireless/libertas/cmd.c b/drivers/net/wireless/libertas/cmd.c index 5aaeb91418b4..910706c54def 100644 --- a/drivers/net/wireless/libertas/cmd.c +++ b/drivers/net/wireless/libertas/cmd.c | |||
@@ -861,6 +861,11 @@ static int wlan_cmd_bt_access(wlan_private * priv, | |||
861 | break; | 861 | break; |
862 | case cmd_act_bt_access_reset: | 862 | case cmd_act_bt_access_reset: |
863 | break; | 863 | break; |
864 | case cmd_act_bt_access_set_invert: | ||
865 | bt_access->id = cpu_to_le32(*(u32 *) pdata_buf); | ||
866 | break; | ||
867 | case cmd_act_bt_access_get_invert: | ||
868 | break; | ||
864 | default: | 869 | default: |
865 | break; | 870 | break; |
866 | } | 871 | } |