diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2008-04-22 13:46:06 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-04-24 13:07:52 -0400 |
commit | 7f7203df3f7d056e5f3c4419c6ab3835f44b288c (patch) | |
tree | 56716e59f395057cdffb80769ff3f28f19a4a842 /drivers/media/dvb/frontends/tda18271.h | |
parent | c293d0a72ecb9dd09037cdf4a9089e455404cf4a (diff) |
V4L/DVB (7385): tda18271: store agc_mode configuration independently of std_bits
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/dvb/frontends/tda18271.h')
-rw-r--r-- | drivers/media/dvb/frontends/tda18271.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/media/dvb/frontends/tda18271.h b/drivers/media/dvb/frontends/tda18271.h index a33095757ea8..3a743b0f0e8b 100644 --- a/drivers/media/dvb/frontends/tda18271.h +++ b/drivers/media/dvb/frontends/tda18271.h | |||
@@ -26,7 +26,12 @@ | |||
26 | 26 | ||
27 | struct tda18271_std_map_item { | 27 | struct tda18271_std_map_item { |
28 | u16 if_freq; | 28 | u16 if_freq; |
29 | u8 std_bits; | 29 | |
30 | /* EP3[4:3] */ | ||
31 | unsigned int agc_mode:2; | ||
32 | /* EP3[2:0] */ | ||
33 | unsigned int std:3; | ||
34 | /* EP4[7] */ | ||
30 | unsigned int fm_rfn:1; | 35 | unsigned int fm_rfn:1; |
31 | }; | 36 | }; |
32 | 37 | ||