summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2005-08-24 09:15:13 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2005-08-24 09:15:13 +0000
commitae1241bf94b88c800a27fcc81ef0c1de1ab94057 (patch)
treea033dc199c6840df48c6c41d2e139848dc3fba16
parent4021798aec181d1280b3ac2044df82fb3131d9ce (diff)
downloadrockbox-ae1241bf94b88c800a27fcc81ef0c1de1ab94057.tar.gz
rockbox-ae1241bf94b88c800a27fcc81ef0c1de1ab94057.zip
Ooops, didn't mean to commit that
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7399 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/tuner_philips.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/tuner_philips.c b/firmware/tuner_philips.c
index 59c6d219d8..72dbf9df5b 100644
--- a/firmware/tuner_philips.c
+++ b/firmware/tuner_philips.c
@@ -37,7 +37,7 @@ void philips_set(int setting, int value)
/* init values */
write_bytes[0] = 0x80; /* mute */
write_bytes[1] = 0x00;
- write_bytes[2] = 0x10;
+ write_bytes[2] = 0x00;
#if CONFIG_TUNER_XTAL == 32768000
write_bytes[3] = 0x1A; /* 32.768MHz, soft mute,
stereo noise cancelling */
@@ -55,9 +55,9 @@ void philips_set(int setting, int value)
{
int n;
#if CONFIG_TUNER_XTAL == 32768000
- n = (4 * (value + 225000)) / 32768;
+ n = (4 * (value - 225000)) / 32768;
#else
- n = (4 * (value + 225000)) / 50000;
+ n = (4 * (value - 225000)) / 50000;
#endif
write_bytes[0] = (write_bytes[0] & 0xC0) | (n >> 8);
write_bytes[1] = n & 0xFF;