From: Peng Xu Date: Thu, 5 Nov 2015 00:47:04 +0000 (-0800) Subject: Assign QCA vendor command and attribute for Tx power reduction in dB X-Git-Tag: hostap_2_6~1383 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9a8d9f7c6211fcf37ecd76d27eb5948350d6537b;p=thirdparty%2Fhostap.git Assign QCA vendor command and attribute for Tx power reduction in dB Assign nl80211 vendor command QCA_NL80211_VENDOR_SUBCMD_SET_TXPOWER_DECR_DB and corresponding attributes. Signed-off-by: Jouni Malinen --- diff --git a/src/common/qca-vendor.h b/src/common/qca-vendor.h index 32cda88a8..a3ee91d87 100644 --- a/src/common/qca-vendor.h +++ b/src/common/qca-vendor.h @@ -161,6 +161,7 @@ enum qca_nl80211_vendor_subcmds { QCA_NL80211_VENDOR_SUBCMD_OTA_TEST = 108, QCA_NL80211_VENDOR_SUBCMD_SET_TXPOWER_SCALE = 109, /* 110..114 - reserved for QCA */ + QCA_NL80211_VENDOR_SUBCMD_SET_TXPOWER_DECR_DB = 115, }; @@ -445,4 +446,20 @@ enum qca_vendor_attr_txpower_scale { QCA_WLAN_VENDOR_ATTR_TXPOWER_SCALE_AFTER_LAST - 1 }; +/** + * enum qca_vendor_attr_txpower_decr_db - Attributes for TX power decrease + * + * These attributes are used with QCA_NL80211_VENDOR_SUBCMD_SET_TXPOWER_DECR_DB. + */ +enum qca_vendor_attr_txpower_decr_db { + QCA_WLAN_VENDOR_ATTR_TXPOWER_DECR_DB_INVALID, + /* 8-bit unsigned value to indicate the reduction of TX power in dB for + * a virtual interface. */ + QCA_WLAN_VENDOR_ATTR_TXPOWER_DECR_DB, + /* keep last */ + QCA_WLAN_VENDOR_ATTR_TXPOWER_DECR_DB_AFTER_LAST, + QCA_WLAN_VENDOR_ATTR_TXPOWER_DECR_DB_MAX = + QCA_WLAN_VENDOR_ATTR_TXPOWER_DECR_DB_AFTER_LAST - 1 +}; + #endif /* QCA_VENDOR_H */