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

Commit 0015b190 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab Committed by Mauro Carvalho Chehab
Browse files

media: atomisp-gc0310: return errors at gc0310_init()



If something wrong gets there, return the error.

Get rid of this warning:

  drivers/staging/media/atomisp/i2c/atomisp-gc0310.c: In function 'gc0310_init':
  drivers/staging/media/atomisp/i2c/atomisp-gc0310.c:713:6: warning: variable 'ret' set but not used [-Wunused-but-set-variable]
    int ret;
        ^~~

Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
Signed-off-by: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+samsung@kernel.org>
parent e5c0680f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -727,7 +727,7 @@ static int gc0310_init(struct v4l2_subdev *sd)
	mutex_unlock(&dev->input_lock);

	pr_info("%s E\n", __func__);
	return 0;
	return ret;
}

static int power_ctrl(struct v4l2_subdev *sd, bool flag)