diff options
author | Jonathan Aillet <jonathan.aillet@iot.bzh> | 2018-06-08 10:42:03 +0200 |
---|---|---|
committer | Jonathan Aillet <jonathan.aillet@iot.bzh> | 2018-10-08 15:52:51 +0200 |
commit | 19e10aecc2c79da8a738d6071a74409d6627018c (patch) | |
tree | da5a037103132f3c3d0791f3f38511b1be9f5fbd /4a-hal/4a-hal-controllers/4a-hal-controllers-api-loader.c | |
parent | 18cc036b38bb207c7298ca3d4fc78be55fe87e39 (diff) |
Change the field name use to store card path
Change the field name use to store card path into
controller hal data structure.
Change-Id: I4413a4e5550f3122055db4c6184907d8be407ceb
Signed-off-by: Jonathan Aillet <jonathan.aillet@iot.bzh>
Diffstat (limited to '4a-hal/4a-hal-controllers/4a-hal-controllers-api-loader.c')
-rw-r--r-- | 4a-hal/4a-hal-controllers/4a-hal-controllers-api-loader.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/4a-hal/4a-hal-controllers/4a-hal-controllers-api-loader.c b/4a-hal/4a-hal-controllers/4a-hal-controllers-api-loader.c index 403b934..8de028d 100644 --- a/4a-hal/4a-hal-controllers/4a-hal-controllers-api-loader.c +++ b/4a-hal/4a-hal-controllers/4a-hal-controllers-api-loader.c @@ -93,7 +93,7 @@ static int HalCtlsInitOneApi(AFB_ApiT apiHandle) currentCtlHalData->internal = true; currentCtlHalData->apiName = (char *) ctrlConfig->api; - currentCtlHalData->sndCard = (char *) ctrlConfig->uid; + currentCtlHalData->sndCardPath = (char *) ctrlConfig->uid; currentCtlHalData->info = (char *) ctrlConfig->info; currentCtlHalData->author = (char *) ctrlConfig->author; @@ -105,7 +105,7 @@ static int HalCtlsInitOneApi(AFB_ApiT apiHandle) currentCtlHalData->ctlHalSpecificData->ctlHalStreamsData.count = 0; - currentCtlHalData->sndCardId = HalCtlsGetCardIdByCardPath(apiHandle, currentCtlHalData->sndCard); + currentCtlHalData->sndCardId = HalCtlsGetCardIdByCardPath(apiHandle, currentCtlHalData->sndCardPath); if(currentCtlHalData->sndCardId < 0) currentCtlHalData->status = HAL_STATUS_UNAVAILABLE; |