aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/radio
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2012-06-14 09:43:13 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2012-07-30 18:11:48 -0300
commitb9664259517ac280f9a93bc8a994675d54b88bdb (patch)
tree1f9fbd395ba1c4942e862f49f1484ddfc5de0f09 /drivers/media/radio
parent[media] radio-si470x: Always use interrupt to wait for tune/seek completion (diff)
downloadlinux-dev-b9664259517ac280f9a93bc8a994675d54b88bdb.tar.xz
linux-dev-b9664259517ac280f9a93bc8a994675d54b88bdb.zip
[media] radio-si470x: Lower hardware freq seek signal treshold
The previous value made hardware freq seek not work for me, despite having good reception of almost all Dutch radio stations. Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/radio')
-rw-r--r--drivers/media/radio/si470x/radio-si470x-common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/radio/si470x/radio-si470x-common.c b/drivers/media/radio/si470x/radio-si470x-common.c
index 9f8b675944f5..84ab3d5776da 100644
--- a/drivers/media/radio/si470x/radio-si470x-common.c
+++ b/drivers/media/radio/si470x/radio-si470x-common.c
@@ -359,7 +359,7 @@ int si470x_start(struct si470x_device *radio)
/* sysconfig 2 */
radio->registers[SYSCONFIG2] =
- (0x3f << 8) | /* SEEKTH */
+ (0x1f << 8) | /* SEEKTH */
((band << 6) & SYSCONFIG2_BAND) | /* BAND */
((space << 4) & SYSCONFIG2_SPACE) | /* SPACE */
15; /* VOLUME (max) */