projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
77b3bd0
)
[PATCH] dvb: tda1004x: dont use bitfields
author
Johannes Stezenbach
<js@linuxtv.org>
Tue, 17 May 2005 04:54:35 +0000
(21:54 -0700)
committer
Linus Torvalds
<torvalds@ppc970.osdl.org>
Tue, 17 May 2005 14:59:31 +0000
(07:59 -0700)
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>
drivers/media/dvb/frontends/tda1004x.h
patch
|
blob
|
history
diff --git
a/drivers/media/dvb/frontends/tda1004x.h
b/drivers/media/dvb/frontends/tda1004x.h
index e452fc0bad1153734edf65ac75061a3919c75b7c..196a375a16e4bed9cc17b0573b1b3ff13a502316 100644
(file)
--- a/
drivers/media/dvb/frontends/tda1004x.h
+++ b/
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);