Commit dc3ae328 authored by Tony Prisk's avatar Tony Prisk Committed by Mauro Carvalho Chehab
Browse files

[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: default avatarTony Prisk <linux@prisktech.co.nz>
Signed-off-by: default avatarSylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent a8697ec8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;