media: staging: atomisp: Remove duplicate NULL-check
GPIO framework checks for NULL pointer when gpiod_set_value() is called. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
parent
cae8b2e138
commit
6aebb3c6da
@ -394,7 +394,7 @@ static int gmin_gpio0_ctrl(struct v4l2_subdev *subdev, int on)
|
||||
{
|
||||
struct gmin_subdev *gs = find_gmin_subdev(subdev);
|
||||
|
||||
if (gs && gs->gpio0) {
|
||||
if (gs) {
|
||||
gpiod_set_value(gs->gpio0, on);
|
||||
return 0;
|
||||
}
|
||||
@ -405,7 +405,7 @@ static int gmin_gpio1_ctrl(struct v4l2_subdev *subdev, int on)
|
||||
{
|
||||
struct gmin_subdev *gs = find_gmin_subdev(subdev);
|
||||
|
||||
if (gs && gs->gpio1) {
|
||||
if (gs) {
|
||||
gpiod_set_value(gs->gpio1, on);
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user