[media] bw-qcam: remove unnecessary qc_reset and qc_setscanmode calls
authorHans Verkuil <hans.verkuil@cisco.com>
Wed, 30 Jan 2013 17:07:38 +0000 (14:07 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Tue, 5 Feb 2013 20:20:38 +0000 (18:20 -0200)
These are already done elsewhere.

Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/parport/bw-qcam.c

index d3fe34f..06231b8 100644 (file)
@@ -421,8 +421,6 @@ static void qc_set(struct qcam *q)
        int val;
        int val2;
 
-       qc_reset(q);
-
        /* Set the brightness.  Yes, this is repetitive, but it works.
         * Shorter versions seem to fail subtly.  Feel free to try :-). */
        /* I think the problem was in qc_command, not here -- bls */
@@ -879,10 +877,8 @@ static int qcam_s_ctrl(struct v4l2_ctrl *ctrl)
                ret = -EINVAL;
                break;
        }
-       if (ret == 0) {
-               qc_setscanmode(qcam);
+       if (ret == 0)
                qcam->status |= QC_PARAM_CHANGE;
-       }
        return ret;
 }