Prechádzať zdrojové kódy

qcacld-3.0: Add support for multiple ini files

Currently host driver supports only one ini file,
with this change add support for multiple ini files.

Change-Id: I6313f50a6275501d0694876f24b8d4a1ce6c2e72
CRs-Fixed: 3007190
Ashish Kumar Dhanotiya 3 rokov pred
rodič
commit
ba78557c73

+ 4 - 1
core/hdd/inc/wlan_hdd_misc.h

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2012-2014,2016-2017,2019 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2012-2014,2016-2017,2019, 2021 The Linux Foundation. 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
@@ -49,4 +49,7 @@
 #define WLAN_MAC_FILE              "wlan/" PREFIX "wlan_mac.bin"
 #endif /* MSM_PLATFORM */
 
+#define WLAN_CONNECTION_ROAMING_INI_FILE "wlan-connection-roaming.ini"
+#define WLAN_CONNECTION_ROAMING_BACKUP_INI_FILE "wlan-connection-roaming-backup.ini"
+
 #endif /* WLAN_HDD_MISC_H */

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

@@ -12261,6 +12261,10 @@ struct hdd_context *hdd_context_create(struct device *dev)
 		goto err_free_config;
 	}
 
+	status = cfg_parse(WLAN_CONNECTION_ROAMING_INI_FILE);
+	if (QDF_IS_STATUS_ERROR(status))
+		status = cfg_parse(WLAN_CONNECTION_ROAMING_BACKUP_INI_FILE);
+
 	ret = hdd_objmgr_create_and_store_psoc(hdd_ctx, DEFAULT_PSOC_ID);
 	if (ret) {
 		QDF_DEBUG_PANIC("Psoc creation fails!");