Browse Source

qcacmn: Rectify input given to wlan_reg_get_band_channel_list

In function scm_update_6ghz_channel_list, while calling function
wlan_reg_get_band_channel_list change the second argument to BIT of enum,
instead of the enum itself.

Change-Id: I61dc0bf1e52e458cd26bcb278d88f687f92130e9
CRs-Fixed: 2559519
Hariharan Basuthkar 5 years ago
parent
commit
b19418e3eb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      umac/scan/core/src/wlan_scan_manager.c

+ 1 - 1
umac/scan/core/src/wlan_scan_manager.c

@@ -864,7 +864,7 @@ scm_update_6ghz_channel_list(struct wlan_objmgr_vdev *vdev,
 
 		/* Add the 6Ghz channels based on config*/
 		channel_count = wlan_reg_get_band_channel_list(pdev,
-							       REG_BAND_6G,
+							       BIT(REG_BAND_6G),
 							       chan_list_6g);
 		scm_debug("Number of 6G channels %d", channel_count);
 		for (i = 0; i < channel_count; i++) {