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

Commit a63bafd8 authored by Shaik Ameer Basha's avatar Shaik Ameer Basha Committed by Mauro Carvalho Chehab
Browse files

[media] s5p-fimc: fix variable type in fimc_device_run()



In fimc_device_run(), variable "ret" is accepting signed integer
values. But currently it is defined as u32. This patch will modify
the type of "ret" variable to "int".

Signed-off-by: default avatarShaik Ameer Basha <shaik.ameer@samsung.com>
Signed-off-by: default avatarSylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 4bd0e030
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -105,7 +105,7 @@ static void fimc_device_run(void *priv)
	struct fimc_frame *sf, *df;
	struct fimc_frame *sf, *df;
	struct fimc_dev *fimc;
	struct fimc_dev *fimc;
	unsigned long flags;
	unsigned long flags;
	u32 ret;
	int ret;


	if (WARN(!ctx, "Null context\n"))
	if (WARN(!ctx, "Null context\n"))
		return;
		return;