diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-04-26 14:23:19 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-04-26 14:23:19 -0300 |
commit | 38289d94bcb5008e33c10db7a29d4e6c4d34cb8c (patch) | |
tree | c299a9d0726e4cb0cb1c2d1c4481d14983d750a8 /linux/drivers/media/common | |
parent | 93bee01e0e68bc7de364f39951aea01720da1a5e (diff) | |
download | mediapointer-dvb-s2-38289d94bcb5008e33c10db7a29d4e6c4d34cb8c.tar.gz mediapointer-dvb-s2-38289d94bcb5008e33c10db7a29d4e6c4d34cb8c.tar.bz2 |
A few CodingStyle fixes
From: Mauro Carvalho Chehab <mchehab@infradead.org>
kernel-sync:
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media/common')
-rw-r--r-- | linux/drivers/media/common/tuners/tuner-xc2028.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/common/tuners/tuner-xc2028.c b/linux/drivers/media/common/tuners/tuner-xc2028.c index 3aa81ae99..4c6a0b7ea 100644 --- a/linux/drivers/media/common/tuners/tuner-xc2028.c +++ b/linux/drivers/media/common/tuners/tuner-xc2028.c @@ -439,7 +439,7 @@ static int seek_firmware(struct dvb_frontend *fe, unsigned int type, type_mask = BASE_TYPES; else if (type & SCODE) { type &= SCODE_TYPES; - type_mask = SCODE_TYPES &~ HAS_IF; + type_mask = SCODE_TYPES & ~HAS_IF; } else if (type & DTV_TYPES) type_mask = DTV_TYPES; else if (type & STD_SPECIFIC_TYPES) |