mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-12-08 23:08:37 +00:00
[media] exynos4-is: Remove redundant NULL check in fimc-lite.c
clk_unprepare checks for NULL pointer. Hence convert IS_ERR_OR_NULL to IS_ERR only. [s.nawrocki: replaced initialisations to NULL with ERR_PTR() value] Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
8638a467cc
commit
24f99dd0fb
@ -1417,12 +1417,12 @@ static void fimc_lite_unregister_capture_subdev(struct fimc_lite *fimc)
|
|||||||
|
|
||||||
static void fimc_lite_clk_put(struct fimc_lite *fimc)
|
static void fimc_lite_clk_put(struct fimc_lite *fimc)
|
||||||
{
|
{
|
||||||
if (IS_ERR_OR_NULL(fimc->clock))
|
if (IS_ERR(fimc->clock))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
clk_unprepare(fimc->clock);
|
clk_unprepare(fimc->clock);
|
||||||
clk_put(fimc->clock);
|
clk_put(fimc->clock);
|
||||||
fimc->clock = NULL;
|
fimc->clock = ERR_PTR(-EINVAL);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int fimc_lite_clk_get(struct fimc_lite *fimc)
|
static int fimc_lite_clk_get(struct fimc_lite *fimc)
|
||||||
@ -1436,7 +1436,7 @@ static int fimc_lite_clk_get(struct fimc_lite *fimc)
|
|||||||
ret = clk_prepare(fimc->clock);
|
ret = clk_prepare(fimc->clock);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
clk_put(fimc->clock);
|
clk_put(fimc->clock);
|
||||||
fimc->clock = NULL;
|
fimc->clock = ERR_PTR(-EINVAL);
|
||||||
}
|
}
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user