aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorJohannes Stezenbach <js@linuxtv.org>2005-05-16 21:54:35 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-05-17 07:59:31 -0700
commitdd102c752c17636b2aec7977b377c41156ed19c1 (patch)
tree5eba85528af3fb3e34f05f0511c787bbd36d89b8 /drivers
parent[PATCH] dvb: mt352: embed struct mt352_config in mt352_state (diff)
downloadlinux-dev-dd102c752c17636b2aec7977b377c41156ed19c1.tar.xz
linux-dev-dd102c752c17636b2aec7977b377c41156ed19c1.zip
[PATCH] dvb: tda1004x: dont use bitfields
use simple u8 instead of bitfields (Andreas Oberritter) Signed-off-by: Johannes Stezenbach <js@linuxtv.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/media/dvb/frontends/tda1004x.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/dvb/frontends/tda1004x.h b/drivers/media/dvb/frontends/tda1004x.h
index e452fc0bad11..196a375a16e4 100644
--- a/drivers/media/dvb/frontends/tda1004x.h
+++ b/drivers/media/dvb/frontends/tda1004x.h
@@ -32,10 +32,10 @@ struct tda1004x_config
u8 demod_address;
/* does the "inversion" need inverted? */
- u8 invert:1;
+ u8 invert;
/* Does the OCLK signal need inverted? */
- u8 invert_oclk:1;
+ u8 invert_oclk;
/* PLL maintenance */
int (*pll_init)(struct dvb_frontend* fe);