]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
staging: bcm2835: Remove dead code related to framerate.
authorEric Anholt <eric@anholt.net>
Thu, 10 May 2018 19:42:19 +0000 (12:42 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 11 May 2018 10:02:06 +0000 (12:02 +0200)
Fixes a compiler warning about a set-but-not-used variable. I think
this was just leftover dead code from before set_framerate_params(),
since that also sets up some mmal_parameter_rational structs for fps.

Signed-off-by: Eric Anholt <eric@anholt.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vc04_services/bcm2835-camera/bcm2835-camera.c

index 2007088ab5041ce307a2f86bf31f8f99234e30e7..879c0b0ed9583dd7e6f892533b6fdacf09b57a1c 100644 (file)
@@ -1397,7 +1397,6 @@ static int vidioc_s_parm(struct file *file, void *priv,
 {
        struct bm2835_mmal_dev *dev = video_drvdata(file);
        struct v4l2_fract tpf;
-       struct mmal_parameter_rational fps_param;
 
        if (parm->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
                return -EINVAL;
@@ -1414,10 +1413,6 @@ static int vidioc_s_parm(struct file *file, void *priv,
        parm->parm.capture.readbuffers  = 1;
        parm->parm.capture.capability   = V4L2_CAP_TIMEPERFRAME;
 
-       fps_param.num = 0;      /* Select variable fps, and then use
-                                * FPS_RANGE to select the actual limits.
-                                */
-       fps_param.den = 1;
        set_framerate_params(dev);
 
        return 0;