From: Chanwoo Choi Date: Thu, 5 Dec 2024 11:49:14 +0000 (+0900) Subject: halcc: parser: Use small letter of 'ipc' transport method X-Git-Tag: accepted/tizen/unified/20241217.010335~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=23330d604b4747822670c56135004e8f13cc99ce;p=platform%2Fhal%2Fapi%2Fcommon.git halcc: parser: Use small letter of 'ipc' transport method The 'transport' property is able to have either 'passthrough' or 'ipc'. In order to keep the consistent small letter style, replace 'IPC' with 'ipc'. Change-Id: I2212337e1af49b04c2e23f92825bed602a4ca473 Signed-off-by: Chanwoo Choi --- diff --git a/src/hal-api-compatibility-checker-parser.c b/src/hal-api-compatibility-checker-parser.c index cf0e4b9..8b9ee74 100644 --- a/src/hal-api-compatibility-checker-parser.c +++ b/src/hal-api-compatibility-checker-parser.c @@ -124,7 +124,7 @@ static int parse_hal(xmlNode *node, halcc_manifest *manifest) if (xmlStrEqual(transport, "passthrough")) ret = halcc_hal_set_transport(hal, HALCC_TRANSPORT_PASSTHROUGH); - else if (xmlStrEqual(transport, "IPC")) + else if (xmlStrEqual(transport, "ipc")) ret = halcc_hal_set_transport(hal, HALCC_TRANSPORT_IPC); else ret = -EINVAL;