aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media
diff options
context:
space:
mode:
authorDan Carpenter <dan.carpenter@oracle.com>2012-07-21 03:32:38 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2012-07-30 19:33:08 -0400
commit3a495ed77a2f582d860472cdfca815c1dc4a5d02 (patch)
tree9b9b780ace36da5f59fe3eaa055db7bc54eff320 /drivers/media
parent1a17a942cd0fe430540e9ead2e57eb358b6963bd (diff)
[media] tuner-xc2028: fix "=" vs "==" typo
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>
Diffstat (limited to 'drivers/media')
-rw-r--r--drivers/media/common/tuners/tuner-xc2028.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/common/tuners/tuner-xc2028.c b/drivers/media/common/tuners/tuner-xc2028.c
index f88f948efee2..9e602856b2fa 100644
--- a/drivers/media/common/tuners/tuner-xc2028.c
+++ b/drivers/media/common/tuners/tuner-xc2028.c
@@ -756,7 +756,7 @@ retry:
756 * No need to reload base firmware if it matches and if the tuner 756 * No need to reload base firmware if it matches and if the tuner
757 * is not at sleep mode 757 * is not at sleep mode
758 */ 758 */
759 if ((priv->state = XC2028_ACTIVE) && 759 if ((priv->state == XC2028_ACTIVE) &&
760 (((BASE | new_fw.type) & BASE_TYPES) == 760 (((BASE | new_fw.type) & BASE_TYPES) ==
761 (priv->cur_fw.type & BASE_TYPES))) { 761 (priv->cur_fw.type & BASE_TYPES))) {
762 tuner_dbg("BASE firmware not changed.\n"); 762 tuner_dbg("BASE firmware not changed.\n");