diff options
author | Mike Isely <isely@pobox.com> | 2006-03-10 22:44:29 -0600 |
---|---|---|
committer | Mike Isely <isely@pobox.com> | 2006-03-10 22:44:29 -0600 |
commit | c40b5265ec12ca5d5b38549372d9c9c2fa632ba8 (patch) | |
tree | 14cc3381a39ac08e000a9832df21c80d6ba9d2cc /linux | |
parent | 55f51733177372bd79c2be661791dacecdee81a2 (diff) | |
download | mediapointer-dvb-s2-c40b5265ec12ca5d5b38549372d9c9c2fa632ba8.tar.gz mediapointer-dvb-s2-c40b5265ec12ca5d5b38549372d9c9c2fa632ba8.tar.bz2 |
Raise legal maximum frequency to 850MHz
From: Mike Isely <isely@pobox.com>
The V4L2 control limit for frequency is too low. This change raises
the limit to a more reasonable maximum.
Signed-off-by: Mike Isely <isely@pobox.com>
Diffstat (limited to 'linux')
-rw-r--r-- | linux/drivers/media/video/pvrusb2/pvrusb2-hdw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/drivers/media/video/pvrusb2/pvrusb2-hdw.c b/linux/drivers/media/video/pvrusb2/pvrusb2-hdw.c index dcd5e40c8..84b6f1af8 100644 --- a/linux/drivers/media/video/pvrusb2/pvrusb2-hdw.c +++ b/linux/drivers/media/video/pvrusb2/pvrusb2-hdw.c @@ -306,7 +306,7 @@ static struct pvr2_ctl_def control_defs[PVR2_CID_COUNT] = [PVR2_CID_FREQUENCY] = { .name = "Tuner Frequency (Hz)", .min_value = 55250000L, - .max_value = 801250000L, + .max_value = 850000000L, .default_value = 175250000L, }, [PVR2_CID_HRES] = { @@ -348,7 +348,7 @@ static struct pvr2_ctl_def control_defs[PVR2_CID_COUNT] = [PVR2_CID_CHANPROG_FREQ] = { .name = "Channel Program Frequency", .min_value = 55250000L, - .max_value = 801250000L, + .max_value = 850000000L, .skip_init = !0, .set_func = pvr2_ctl_set_chanprog_id, .get_func = pvr2_ctl_get_chanprog_id, |