qcacld-3.0: Fix the fixed rate disable cmd setting value
Correct the fixed rate disable setting parameter value.
Change-Id: I6d7130015053a7bebac99517f32520e324887f93
CRs-Fixed: 2868210
This commit is contained in:

committed by
snandini

parent
d2e215785c
commit
657a090e6c
@@ -3350,7 +3350,7 @@ int hdd_set_11ax_rate(struct hdd_adapter *adapter, int set_value,
|
||||
return -EIO;
|
||||
}
|
||||
|
||||
if (set_value != 0xff) {
|
||||
if (set_value != 0xffff) {
|
||||
rix = RC_2_RATE_IDX_11AX(set_value);
|
||||
preamble = WMI_RATE_PREAMBLE_HE;
|
||||
nss = HT_RC_2_STREAMS_11AX(set_value);
|
||||
|
@@ -4013,7 +4013,7 @@ static int hdd_we_set_11n_rate(struct hdd_adapter *adapter, int rate_code)
|
||||
|
||||
hdd_debug("Rate code %d", rate_code);
|
||||
|
||||
if (rate_code != 0xff) {
|
||||
if (rate_code != 0xffff) {
|
||||
rix = RC_2_RATE_IDX(rate_code);
|
||||
if (rate_code & 0x80) {
|
||||
preamble = WMI_RATE_PREAMBLE_HT;
|
||||
@@ -4066,7 +4066,7 @@ static int hdd_we_set_vht_rate(struct hdd_adapter *adapter, int rate_code)
|
||||
|
||||
hdd_debug("Rate code %d", rate_code);
|
||||
|
||||
if (rate_code != 0xff) {
|
||||
if (rate_code != 0xffff) {
|
||||
rix = RC_2_RATE_IDX_11AC(rate_code);
|
||||
preamble = WMI_RATE_PREAMBLE_VHT;
|
||||
nss = HT_RC_2_STREAMS_11AC(rate_code) - 1;
|
||||
|
Reference in New Issue
Block a user