Staging: dgap: Remove unnecessary variable.
authorAnkita Patil <patil.ankita.r@gmail.com>
Thu, 18 Sep 2014 07:01:00 +0000 (12:31 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 19 Sep 2014 23:53:57 +0000 (16:53 -0700)
This patch removes unnecessary variable in file dgap.c
using Coccinelle. Semantic patch for this is as follows:

@@
expression ret;
identifier f;
@@

-ret =
+return
     f(...);
-return ret;

Also removed the unneeded variable manually.

Signed-off-by: Ankita Patil <patil.ankita.r@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/media/omap24xx/omap24xxcam.c

index d2b440c842b3f0867fbeea30dc12efb9761ac370..d590b3e8b70c71fe9b34c910a6735ebbb7df7c5f 100644 (file)
@@ -1003,11 +1003,8 @@ static int vidioc_enum_fmt_vid_cap(struct file *file, void *fh,
 {
        struct omap24xxcam_fh *ofh = fh;
        struct omap24xxcam_device *cam = ofh->cam;
-       int rval;
-
-       rval = vidioc_int_enum_fmt_cap(cam->sdev, f);
 
-       return rval;
+       return vidioc_int_enum_fmt_cap(cam->sdev, f);
 }
 
 static int vidioc_g_fmt_vid_cap(struct file *file, void *fh,
@@ -1245,11 +1242,8 @@ static int vidioc_queryctrl(struct file *file, void *fh,
 {
        struct omap24xxcam_fh *ofh = fh;
        struct omap24xxcam_device *cam = ofh->cam;
-       int rval;
-
-       rval = vidioc_int_queryctrl(cam->sdev, a);
 
-       return rval;
+       return vidioc_int_queryctrl(cam->sdev, a);
 }
 
 static int vidioc_g_ctrl(struct file *file, void *fh,