Commit f7a12fdf authored by Dan Carpenter's avatar Dan Carpenter Committed by Mauro Carvalho Chehab
Browse files

[media] r820t: precendence bug in r820t_xtal_check()



The test as written is always false.  It looks like the intent was to
test that the bit was not set.

Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 4ed7e7ba
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1378,7 +1378,7 @@ static int r820t_xtal_check(struct r820t_priv *priv)
		rc = r820t_read(priv, 0x00, data, sizeof(data));
		if (rc < 0)
			return rc;
		if ((!data[2]) & 0x40)
		if (!(data[2] & 0x40))
			continue;

		val = data[2] & 0x3f;