[media] tuner-xc2028: fix "=" vs "==" typo
authorDan Carpenter <dan.carpenter@oracle.com>
Sat, 21 Jul 2012 07:32:38 +0000 (04:32 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Mon, 30 Jul 2012 23:33:08 +0000 (20:33 -0300)
We intended to do a compare here, not an assignment.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/common/tuners/tuner-xc2028.c

index f88f948efee2e51fd39f2e98d74d696f08924f5b..9e602856b2faee5817ec9d6abc88cee00e359c4f 100644 (file)
@@ -756,7 +756,7 @@ retry:
         * No need to reload base firmware if it matches and if the tuner
         * is not at sleep mode
         */
-       if ((priv->state = XC2028_ACTIVE) &&
+       if ((priv->state == XC2028_ACTIVE) &&
            (((BASE | new_fw.type) & BASE_TYPES) ==
            (priv->cur_fw.type & BASE_TYPES))) {
                tuner_dbg("BASE firmware not changed.\n");
This page took 0.027703 seconds and 5 git commands to generate.