halcc: parser: Use small letter of 'ipc' transport method 27/315927/1
authorChanwoo Choi <cw00.choi@samsung.com>
Thu, 5 Dec 2024 11:49:14 +0000 (20:49 +0900)
committerChanwoo Choi <cw00.choi@samsung.com>
Fri, 6 Dec 2024 08:13:30 +0000 (17:13 +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: I643e4da38bde7fc9bc7f63c281abb6ac1c4e23cd
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;