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