Commit 32616b21 authored by Andy Gross's avatar Andy Gross

soc: qcom: llcc-slice: Fix typos

This patch fixes typos in the llcc-slice driver.

Fixes: 72d1cd03 ("qcom: soc: llcc-slice: Clear the global drv_data pointer on error")
Signed-off-by: default avatarAndy Gross <andy.gross@linaro.org>
parent ed10a259
......@@ -149,7 +149,7 @@ int llcc_slice_activate(struct llcc_slice_desc *desc)
int ret;
u32 act_ctrl_val;
If (IS_ERR(drv_data))
if (IS_ERR(drv_data))
return PTR_ERR(drv_data);
if (IS_ERR_OR_NULL(desc))
......@@ -189,7 +189,7 @@ int llcc_slice_deactivate(struct llcc_slice_desc *desc)
u32 act_ctrl_val;
int ret;
If (IS_ERR(drv_data))
if (IS_ERR(drv_data))
return PTR_ERR(drv_data);
if (IS_ERR_OR_NULL(desc))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment