Ver código fonte

qcacld-3.0: Add support for new argument 1 for SET_FCC_CHANNEL

Currently there is no support for argument 1 for SET_FCC_CHANNEL
command, with this change add support for argument 1 for
SET_FCC_CHANNEL command.

Change-Id: I2ceab2459b1798042412e3d3bbadbbf24004451f
CRs-Fixed: 3079545
Ashish 3 anos atrás
pai
commit
4289293186
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2 2
      core/hdd/src/wlan_hdd_ioctl.c

+ 2 - 2
core/hdd/src/wlan_hdd_ioctl.c

@@ -6005,7 +6005,7 @@ static int drv_cmd_set_fcc_channel(struct hdd_adapter *adapter,
 		return err;
 	}
 
-	fcc_constraint = input_value ? false : true;
+	fcc_constraint = (input_value == -1) ? false : true;
 	hdd_debug("input_value = %d && fcc_constraint = %u",
 		  input_value, fcc_constraint);
 
@@ -6019,7 +6019,7 @@ static int drv_cmd_set_fcc_channel(struct hdd_adapter *adapter,
 	}
 
 	if (!rf_test_mode) {
-		if (fcc_constraint) {
+		if (!input_value) {
 			band_bitmap |= (BIT(REG_BAND_5G) | BIT(REG_BAND_2G));
 		} else {
 			if (wlan_reg_is_6ghz_supported(hdd_ctx->psoc))