Add QCA vendor channel attribute to restart AP
Add QCA_WLAN_VENDOR_ATTR_SAP_CONFIG_CHANNEL attribute in enum qca_wlan_vendor_attr_sap_config to use with vendor command QCA_NL80211_VENDOR_SUBCMD_SET_SAP_CONFIG. This new attribute is used to restart AP on given channel. Signed-off-by: Rajeev Kumar Sirasanagandla <rsirasan@codeaurora.org>
This commit is contained in:
parent
85508ecf67
commit
aa23ece3de
1 changed files with 5 additions and 1 deletions
|
@ -1893,10 +1893,14 @@ enum qca_wlan_vendor_attr_config {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* enum qca_wlan_vendor_attr_sap_config - Parameters for AP configuration
|
* enum qca_wlan_vendor_attr_sap_config - Parameters for AP configuration
|
||||||
|
*
|
||||||
|
* @QCA_WLAN_VENDOR_ATTR_SAP_CONFIG_CHANNEL: Optional (u8)
|
||||||
|
* Channel number on which Access Point should restart.
|
||||||
*/
|
*/
|
||||||
enum qca_wlan_vendor_attr_sap_config {
|
enum qca_wlan_vendor_attr_sap_config {
|
||||||
QCA_WLAN_VENDOR_ATTR_SAP_CONFIG_INVALID = 0,
|
QCA_WLAN_VENDOR_ATTR_SAP_CONFIG_INVALID = 0,
|
||||||
/* 1 - reserved for QCA */
|
QCA_WLAN_VENDOR_ATTR_SAP_CONFIG_CHANNEL = 1,
|
||||||
|
|
||||||
/* List of frequencies on which AP is expected to operate.
|
/* List of frequencies on which AP is expected to operate.
|
||||||
* This is irrespective of ACS configuration. This list is a priority
|
* This is irrespective of ACS configuration. This list is a priority
|
||||||
* based one and is looked for before the AP is created to ensure the
|
* based one and is looked for before the AP is created to ensure the
|
||||||
|
|
Loading…
Reference in a new issue