Explorar o código

[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>
Johannes Stezenbach %!s(int64=20) %!d(string=hai) anos
pai
achega
dd102c752c
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      drivers/media/dvb/frontends/tda1004x.h

+ 2 - 2
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);