Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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))