qcacmn: Add support for section parsing in ini

Add support for section parsing in ini, such that we could
read specific section of the file and update the ini values
instead of redundant values or updating the same in the
scripts based on the config

Change-Id: Ibdb08a04d709746c04c3e7c47ee3bb4a7ce85346
CRs-Fixed: 3107545
This commit is contained in:
Surya Prakash Raajen
2022-01-30 16:30:35 +05:30
committed by Madan Koyyalamudi
parent 0101390bcd
commit edf9fd0441
4 changed files with 206 additions and 32 deletions

View File

@@ -1,5 +1,6 @@
/*
* Copyright (c) 2018-2019 The Linux Foundation. All rights reserved.
* Copyright (c) 2022 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
@@ -165,6 +166,19 @@ QDF_STATUS cfg_psoc_parse(struct wlan_objmgr_psoc *psoc, const char *path);
QDF_STATUS cfg_parse_to_psoc_store(struct wlan_objmgr_psoc *psoc,
const char *path);
/**
* cfg_section_parse_to_psoc_store() - Parse specific section from file @path
* and update psoc ini store
* @psoc: The psoc whose config store should be updated
* @path: The full file path of the ini file to parse
* @section_name: Section name to be parsed
*
* Return: QDF_STATUS
*/
QDF_STATUS cfg_section_parse_to_psoc_store(struct wlan_objmgr_psoc *psoc,
const char *path,
const char *section_name);
/**
* cfg_parse_to_global_store() Parse file @path and update global ini store
* @path: The full file path of the ini file to parse