[media] s5p-fimc: Fix incorrect usage of IS_ERR_OR_NULL
Replace IS_ERR_OR_NULL with IS_ERR on clk_get results. Signed-off-by: Tony Prisk <linux@prisktech.co.nz> Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
a8697ec8c7
commit
dc3ae32879
|
@ -732,7 +732,7 @@ static int fimc_md_get_clocks(struct fimc_md *fmd)
|
|||
for (i = 0; i < FIMC_MAX_CAMCLKS; i++) {
|
||||
snprintf(clk_name, sizeof(clk_name), "sclk_cam%u", i);
|
||||
clock = clk_get(NULL, clk_name);
|
||||
if (IS_ERR_OR_NULL(clock)) {
|
||||
if (IS_ERR(clock)) {
|
||||
v4l2_err(&fmd->v4l2_dev, "Failed to get clock: %s",
|
||||
clk_name);
|
||||
return -ENXIO;
|
||||
|
|
Loading…
Reference in New Issue