diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2008-01-02 23:17:45 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-01-25 16:04:37 -0500 |
commit | 2ba65d517b91ebb30f4f2a88f1e1beeabd8d8ee6 (patch) | |
tree | b19f9930f28914d4a0cf23e9e72cea87872001db /drivers/media/dvb/frontends/tda18271.h | |
parent | f21e0d7f0513e743b14df3197fdeeb9a9b7edbb2 (diff) |
V4L/DVB (6963): tda18271: store IF frequency in a u16 instead of u32
Store IF Frequency in a u16 instead of a u32. Multiply by 1000 before use.
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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/frontends/tda18271.h b/drivers/media/dvb/frontends/tda18271.h index 36a3a548a6f5..4fa3d6ab6216 100644 --- a/drivers/media/dvb/frontends/tda18271.h +++ b/drivers/media/dvb/frontends/tda18271.h | |||
@@ -25,7 +25,7 @@ | |||
25 | #include "dvb_frontend.h" | 25 | #include "dvb_frontend.h" |
26 | 26 | ||
27 | struct tda18271_std_map_item { | 27 | struct tda18271_std_map_item { |
28 | u32 if_freq; | 28 | u16 if_freq; |
29 | u8 std_bits; | 29 | u8 std_bits; |
30 | }; | 30 | }; |
31 | 31 | ||