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>
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;