diff options
author | Michael Krufky <mkrufky@kernellabs.com> | 2012-04-16 14:21:51 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-04-19 08:44:08 -0400 |
commit | 409328a4dcd40a14cbe42b2e6f0c492ece3b88cc (patch) | |
tree | 4500bc01d7004a2eee35ad7b6cb361724a6bc72c /drivers/media/common | |
parent | 35320676569a80fb9c612130211d774e072583b4 (diff) |
[media] xc5000: xtal_khz should be a u16 rather than a u32
Signed-off-by: Michael Krufky <mkrufky@kernellabs.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/common')
-rw-r--r-- | drivers/media/common/tuners/xc5000.c | 2 | ||||
-rw-r--r-- | drivers/media/common/tuners/xc5000.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/common/tuners/xc5000.c b/drivers/media/common/tuners/xc5000.c index 377fb8db379b..dcca42ca57be 100644 --- a/drivers/media/common/tuners/xc5000.c +++ b/drivers/media/common/tuners/xc5000.c | |||
@@ -54,7 +54,7 @@ struct xc5000_priv { | |||
54 | struct list_head hybrid_tuner_instance_list; | 54 | struct list_head hybrid_tuner_instance_list; |
55 | 55 | ||
56 | u32 if_khz; | 56 | u32 if_khz; |
57 | u32 xtal_khz; | 57 | u16 xtal_khz; |
58 | u32 freq_hz; | 58 | u32 freq_hz; |
59 | u32 bandwidth; | 59 | u32 bandwidth; |
60 | u8 video_standard; | 60 | u8 video_standard; |
diff --git a/drivers/media/common/tuners/xc5000.h b/drivers/media/common/tuners/xc5000.h index 39a73bf01406..b1a547494625 100644 --- a/drivers/media/common/tuners/xc5000.h +++ b/drivers/media/common/tuners/xc5000.h | |||
@@ -34,7 +34,7 @@ struct xc5000_config { | |||
34 | u8 i2c_address; | 34 | u8 i2c_address; |
35 | u32 if_khz; | 35 | u32 if_khz; |
36 | u8 radio_input; | 36 | u8 radio_input; |
37 | u32 xtal_khz; | 37 | u16 xtal_khz; |
38 | 38 | ||
39 | int chip_id; | 39 | int chip_id; |
40 | }; | 40 | }; |