Browse Source

qcacld-3.0: Add support to convert 11BE mode to string

Currently host driver returns dot11 mode as UNKNOWN for
11BE connection to connect_info sysfs command as mapping
is not present for 11BE mode in hdd_dot11_mode_str.

To address this issue add mapping for 11BE mode in
hdd_dot11_mode_str.

Change-Id: Ia94abfdf4e967d1c0f8d49f9e4757a9a07dab410
CRs-Fixed: 3402629
Asutosh Mohapatra 2 years ago
parent
commit
4f50759f9e
1 changed files with 4 additions and 0 deletions
  1. 4 0
      core/hdd/src/wlan_hdd_sysfs_connect_info.c

+ 4 - 0
core/hdd/src/wlan_hdd_sysfs_connect_info.c

@@ -1,5 +1,6 @@
 /*
  * Copyright (c) 2018-2021, The Linux Foundation. All rights reserved.
+ * Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
@@ -288,6 +289,9 @@ uint8_t *hdd_dot11_mode_str(uint32_t dot11mode)
 	case eCSR_CFG_DOT11_MODE_11AX:
 	case eCSR_CFG_DOT11_MODE_11AX_ONLY:
 		return "DOT11_MODE_11AX";
+	case eCSR_CFG_DOT11_MODE_11BE:
+	case eCSR_CFG_DOT11_MODE_11BE_ONLY:
+		return "DOT11_MODE_11BE";
 	}
 
 	return "UNKNOWN";