diff options
author | Andreas Oberritter <devnull@localhost> | 2005-04-25 20:57:08 +0000 |
---|---|---|
committer | Andreas Oberritter <devnull@localhost> | 2005-04-25 20:57:08 +0000 |
commit | 19944988b4c7c7a9e3e5edefa9e9d177b8b45a06 (patch) | |
tree | 036d78311a774c077f2040e0f7239a7476f5f755 /linux/drivers/media/dvb/frontends/tda1004x.h | |
parent | 9aff565ac3855a98c85c7443e526f361bde6fbc2 (diff) | |
download | mediapointer-dvb-s2-19944988b4c7c7a9e3e5edefa9e9d177b8b45a06.tar.gz mediapointer-dvb-s2-19944988b4c7c7a9e3e5edefa9e9d177b8b45a06.tar.bz2 |
use simple u8 instead of bitfields
Diffstat (limited to 'linux/drivers/media/dvb/frontends/tda1004x.h')
-rw-r--r-- | linux/drivers/media/dvb/frontends/tda1004x.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/drivers/media/dvb/frontends/tda1004x.h b/linux/drivers/media/dvb/frontends/tda1004x.h index e452fc0ba..196a375a1 100644 --- a/linux/drivers/media/dvb/frontends/tda1004x.h +++ b/linux/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); |