diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-08-13 18:09:06 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-08-13 18:09:06 +0000 |
| commit | b626269b941a49ef4c5b9d3edcba29b0f6308e7c (patch) | |
| tree | c64c1ebb9ed7d9e88c73dfa6e7ff20f749d6bce9 | |
| parent | 8c7589bc96517c4e04299e99579799ee2e8dd4ad (diff) | |
| download | rockbox-b626269b941a49ef4c5b9d3edcba29b0f6308e7c.zip rockbox-b626269b941a49ef4c5b9d3edcba29b0f6308e7c.tar.gz rockbox-b626269b941a49ef4c5b9d3edcba29b0f6308e7c.tar.bz2 rockbox-b626269b941a49ef4c5b9d3edcba29b0f6308e7c.tar.xz | |
Oops
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7319 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/tuner_philips.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/firmware/tuner_philips.c b/firmware/tuner_philips.c index 7f3ecf5..72dbf9d 100644 --- a/firmware/tuner_philips.c +++ b/firmware/tuner_philips.c @@ -59,7 +59,6 @@ void philips_set(int setting, int value) #else n = (4 * (value - 225000)) / 50000; #endif - logf("n=%d", n); write_bytes[0] = (write_bytes[0] & 0xC0) | (n >> 8); write_bytes[1] = n & 0xFF; } |