Explorar o código

[media] adv7170: drop redundant ret local

Simplifies return value logic of adv7170_set_fmt().

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Baruch Siach %!s(int64=8) %!d(string=hai) anos
pai
achega
5f98e5f555
Modificáronse 1 ficheiros con 2 adicións e 3 borrados
  1. 2 3
      drivers/media/i2c/adv7170.c

+ 2 - 3
drivers/media/i2c/adv7170.c

@@ -298,7 +298,6 @@ static int adv7170_set_fmt(struct v4l2_subdev *sd,
 {
 {
 	struct v4l2_mbus_framefmt *mf = &format->format;
 	struct v4l2_mbus_framefmt *mf = &format->format;
 	u8 val = adv7170_read(sd, 0x7);
 	u8 val = adv7170_read(sd, 0x7);
-	int ret = 0;
 
 
 	if (format->pad)
 	if (format->pad)
 		return -EINVAL;
 		return -EINVAL;
@@ -319,9 +318,9 @@ static int adv7170_set_fmt(struct v4l2_subdev *sd,
 	}
 	}
 
 
 	if (format->which == V4L2_SUBDEV_FORMAT_ACTIVE)
 	if (format->which == V4L2_SUBDEV_FORMAT_ACTIVE)
-		ret = adv7170_write(sd, 0x7, val);
+		return adv7170_write(sd, 0x7, val);
 
 
-	return ret;
+	return 0;
 }
 }
 
 
 /* ----------------------------------------------------------------------- */
 /* ----------------------------------------------------------------------- */