[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: Shaik Ameer Basha <shaik.ameer@samsung.com>
Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
Shaik Ameer Basha 2012-10-16 09:39:08 -03:00 committed by Mauro Carvalho Chehab
parent 4bd0e030aa
commit a63bafd8e3
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ static void fimc_device_run(void *priv)
struct fimc_frame *sf, *df;
struct fimc_dev *fimc;
unsigned long flags;
u32 ret;
int ret;
if (WARN(!ctx, "Null context\n"))
return;