[PATCH] dvb: tda1004x: dont use bitfields
authorJohannes Stezenbach <js@linuxtv.org>
Tue, 17 May 2005 04:54:35 +0000 (21:54 -0700)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Tue, 17 May 2005 14:59:31 +0000 (07:59 -0700)
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>
drivers/media/dvb/frontends/tda1004x.h

index e452fc0..196a375 100644 (file)
@@ -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);