aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media
diff options
context:
space:
mode:
authorAndrew Morton <akpm@linux-foundation.org>2008-03-04 13:09:09 -0300
committerMauro Carvalho Chehab <mchehab@infradead.org>2008-03-20 12:39:00 -0300
commit46cb57e62824a8d6f9e12bedc98c41738a1478ce (patch)
tree2737da2295ab20b43c10bfba09da44493e9ff9bb /drivers/media
parentV4L/DVB (7285): em28xx: Correct use of ! and & (diff)
downloadlinux-dev-46cb57e62824a8d6f9e12bedc98c41738a1478ce.tar.xz
linux-dev-46cb57e62824a8d6f9e12bedc98c41738a1478ce.zip
V4L/DVB (7291): em28xx: correct use of and fix
be less silly while we're there. Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media')
-rw-r--r--drivers/media/video/em28xx/em28xx-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/em28xx/em28xx-core.c b/drivers/media/video/em28xx/em28xx-core.c
index 8630ee09addd..c1caaa855b99 100644
--- a/drivers/media/video/em28xx/em28xx-core.c
+++ b/drivers/media/video/em28xx/em28xx-core.c
@@ -267,7 +267,7 @@ static int em28xx_write_ac97(struct em28xx *dev, u8 reg, u8 *val)
for (i = 0; i < 10; i++) {
if ((ret = em28xx_read_reg(dev, AC97BUSY_REG)) < 0)
return ret;
- if (!(((u8)ret) & 0x01))
+ if (!(ret & 0x01))
return 0;
msleep(5);
}