diff options
author | Jonathan Aillet <jonathan.aillet@iot.bzh> | 2019-10-10 14:38:45 +0200 |
---|---|---|
committer | Jonathan Aillet <jonathan.aillet@iot.bzh> | 2019-10-17 11:29:21 +0200 |
commit | 702d110ad948cc98cb67e3a094ff434735ad1af8 (patch) | |
tree | a446c81b6de72a80444fee605d9e64e58caddbbe | |
parent | 4063c990f8b146504bcc49b2fb1d1082f58bf707 (diff) |
Allow use of dependency free function for everyone
Allow use of 'HalUtlFreeSelectedProbedDeviceDataAllocation' function
available in '4a-hal-utilities' for everyone.
This function can be used to free allocated content stored in dependency
data structure after a successfully search for dependency.
BUG-AGL: SPEC-2886
Change-Id: I1c68b32fc7adc0191ee05ce4b9fdc54db2f8b105
Signed-off-by: Jonathan Aillet <jonathan.aillet@iot.bzh>
-rw-r--r-- | lib/4a-hal-utilities/4a-hal-utilities-data.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/4a-hal-utilities/4a-hal-utilities-data.h b/lib/4a-hal-utilities/4a-hal-utilities-data.h index a2b28dd..0b62416 100644 --- a/lib/4a-hal-utilities/4a-hal-utilities-data.h +++ b/lib/4a-hal-utilities/4a-hal-utilities-data.h @@ -153,6 +153,7 @@ struct HalMgrData { // Internal Hal - Probed devices structure handling functions enum ProbedDeviceClasses HalUtlGetProbedDeviceClassFromString(char *probedDeviceString); char *HalUtlGetProbedDeviceClassString(enum ProbedDeviceClasses deviceClass); +void HalUtlFreeSelectedProbedDeviceDataAllocation(struct InternalHalDeviceData *probedDeviceDataToFree); struct InternalHalProbedDevice *HalUtlAddProbedDeviceToProbedDeviceList(struct cds_list_head *probedDevicesListHead); int HalUtlRemoveSelectedProbedDeviceFromList(struct cds_list_head *probedDevicesListHead, struct InternalHalProbedDevice *probedDeviceToRemove); |