Skip to content

Commit

Permalink
[PATCH] dvb: tda1004x: dont use bitfields
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Johannes Stezenbach authored and Linus Torvalds committed May 17, 2005
1 parent 77b3bd0 commit dd102c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/media/dvb/frontends/tda1004x.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit dd102c7

Please sign in to comment.