diff options
author | Jouni Malinen <j@w1.fi> | 2008-11-26 09:15:24 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-12-05 09:32:11 -0500 |
commit | 72bdcf34380917260da41e3c49e10edee04bc5cd (patch) | |
tree | cbfb8e389f58514febf47ea62781517a9df42f25 /include/net | |
parent | 72eaa43a532b4156966444779829a986a4432f11 (diff) |
nl80211: Add frequency configuration (including HT40)
This patch adds new NL80211_CMD_SET_WIPHY attributes
NL80211_ATTR_WIPHY_FREQ and NL80211_ATTR_WIPHY_SEC_CHAN_OFFSET to allow
userspace to set the operating channel (e.g., hostapd for AP mode).
Signed-off-by: Jouni Malinen <jouni.malinen@atheros.com>
Acked-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/cfg80211.h | 9 | ||||
-rw-r--r-- | include/net/mac80211.h | 3 |
2 files changed, 12 insertions, 0 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h index 1d57835d73f2..53b06f6c62ca 100644 --- a/include/net/cfg80211.h +++ b/include/net/cfg80211.h | |||
@@ -392,6 +392,9 @@ struct ieee80211_txq_params { | |||
392 | /* from net/wireless.h */ | 392 | /* from net/wireless.h */ |
393 | struct wiphy; | 393 | struct wiphy; |
394 | 394 | ||
395 | /* from net/ieee80211.h */ | ||
396 | struct ieee80211_channel; | ||
397 | |||
395 | /** | 398 | /** |
396 | * struct cfg80211_ops - backend description for wireless configuration | 399 | * struct cfg80211_ops - backend description for wireless configuration |
397 | * | 400 | * |
@@ -450,6 +453,8 @@ struct wiphy; | |||
450 | * @change_bss: Modify parameters for a given BSS. | 453 | * @change_bss: Modify parameters for a given BSS. |
451 | * | 454 | * |
452 | * @set_txq_params: Set TX queue parameters | 455 | * @set_txq_params: Set TX queue parameters |
456 | * | ||
457 | * @set_channel: Set channel | ||
453 | */ | 458 | */ |
454 | struct cfg80211_ops { | 459 | struct cfg80211_ops { |
455 | int (*add_virtual_intf)(struct wiphy *wiphy, char *name, | 460 | int (*add_virtual_intf)(struct wiphy *wiphy, char *name, |
@@ -513,6 +518,10 @@ struct cfg80211_ops { | |||
513 | 518 | ||
514 | int (*set_txq_params)(struct wiphy *wiphy, | 519 | int (*set_txq_params)(struct wiphy *wiphy, |
515 | struct ieee80211_txq_params *params); | 520 | struct ieee80211_txq_params *params); |
521 | |||
522 | int (*set_channel)(struct wiphy *wiphy, | ||
523 | struct ieee80211_channel *chan, | ||
524 | enum nl80211_sec_chan_offset); | ||
516 | }; | 525 | }; |
517 | 526 | ||
518 | #endif /* __NET_CFG80211_H */ | 527 | #endif /* __NET_CFG80211_H */ |
diff --git a/include/net/mac80211.h b/include/net/mac80211.h index 6a1d4ea18186..6e823cc6a4b1 100644 --- a/include/net/mac80211.h +++ b/include/net/mac80211.h | |||
@@ -507,6 +507,9 @@ static inline int __deprecated __IEEE80211_CONF_SHORT_SLOT_TIME(void) | |||
507 | 507 | ||
508 | struct ieee80211_ht_conf { | 508 | struct ieee80211_ht_conf { |
509 | bool enabled; | 509 | bool enabled; |
510 | int sec_chan_offset; /* 0 = HT40 disabled; -1 = HT40 enabled, secondary | ||
511 | * channel below primary; 1 = HT40 enabled, | ||
512 | * secondary channel above primary */ | ||
510 | }; | 513 | }; |
511 | 514 | ||
512 | /** | 515 | /** |