Commit dd102c75 authored by Johannes Stezenbach's avatar Johannes Stezenbach Committed by Linus Torvalds
Browse files

[PATCH] dvb: tda1004x: dont use bitfields



use simple u8 instead of bitfields (Andreas Oberritter)

Signed-off-by: default avatarJohannes Stezenbach <js@linuxtv.org>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 77b3bd0c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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);