halcc: parser: Use small letter of 'ipc' transport method 25/315925/1
authorChanwoo Choi <cw00.choi@samsung.com>
Thu, 5 Dec 2024 11:49:14 +0000 (20:49 +0900)
committerChanwoo Choi <cw00.choi@samsung.com>
Thu, 5 Dec 2024 11:49:14 +0000 (20:49 +0900)
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 <cw00.choi@samsung.com>
src/hal-api-compatibility-checker-parser.c

index cf0e4b9d16d2b6f944bf7847467609a392607979..8b9ee74e26901cc73d684c8cb5b0145e723dc2e8 100644 (file)
@@ -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;