diff options
author | Johannes Stezenbach <js@linuxtv.org> | 2005-05-17 00:54:35 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-17 10:59:31 -0400 |
commit | dd102c752c17636b2aec7977b377c41156ed19c1 (patch) | |
tree | 5eba85528af3fb3e34f05f0511c787bbd36d89b8 /drivers/media/dvb/frontends/tda1004x.h | |
parent | 77b3bd0ccb2fae27e710b921f053ae16f34d70de (diff) |
[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/media/dvb/frontends/tda1004x.h')
-rw-r--r-- | drivers/media/dvb/frontends/tda1004x.h | 4 |
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 | |||
32 | u8 demod_address; | 32 | u8 demod_address; |
33 | 33 | ||
34 | /* does the "inversion" need inverted? */ | 34 | /* does the "inversion" need inverted? */ |
35 | u8 invert:1; | 35 | u8 invert; |
36 | 36 | ||
37 | /* Does the OCLK signal need inverted? */ | 37 | /* Does the OCLK signal need inverted? */ |
38 | u8 invert_oclk:1; | 38 | u8 invert_oclk; |
39 | 39 | ||
40 | /* PLL maintenance */ | 40 | /* PLL maintenance */ |
41 | int (*pll_init)(struct dvb_frontend* fe); | 41 | int (*pll_init)(struct dvb_frontend* fe); |