diff options
Diffstat (limited to 'drivers/net/wireless/ti/wl12xx/cmd.h')
| -rw-r--r-- | drivers/net/wireless/ti/wl12xx/cmd.h | 20 | 
1 files changed, 20 insertions, 0 deletions
diff --git a/drivers/net/wireless/ti/wl12xx/cmd.h b/drivers/net/wireless/ti/wl12xx/cmd.h index 140a0e8829d..32cbad54e99 100644 --- a/drivers/net/wireless/ti/wl12xx/cmd.h +++ b/drivers/net/wireless/ti/wl12xx/cmd.h @@ -103,10 +103,30 @@ struct wl1271_ext_radio_parms_cmd {  	u8 padding[3];  } __packed; +struct wl12xx_cmd_channel_switch { +	struct wl1271_cmd_header header; + +	u8 role_id; + +	/* The new serving channel */ +	u8 channel; +	/* Relative time of the serving channel switch in TBTT units */ +	u8 switch_time; +	/* Stop the role TX, should expect it after radar detection */ +	u8 stop_tx; +	/* The target channel tx status 1-stopped 0-open*/ +	u8 post_switch_tx_disable; + +	u8 padding[3]; +} __packed; +  int wl1271_cmd_general_parms(struct wl1271 *wl);  int wl128x_cmd_general_parms(struct wl1271 *wl);  int wl1271_cmd_radio_parms(struct wl1271 *wl);  int wl128x_cmd_radio_parms(struct wl1271 *wl);  int wl1271_cmd_ext_radio_parms(struct wl1271 *wl); +int wl12xx_cmd_channel_switch(struct wl1271 *wl, +			      struct wl12xx_vif *wlvif, +			      struct ieee80211_channel_switch *ch_switch);  #endif /* __WL12XX_CMD_H__ */  |