summaryrefslogtreecommitdiff
path: root/firmware/drivers/tuner/si4700.c
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2009-12-03 06:14:30 +0000
committerRafaël Carré <rafael.carre@gmail.com>2009-12-03 06:14:30 +0000
commit85fd1000796986dbb77f4112c37833db7de781dc (patch)
treeb1c13e16bd2360e394839c7fcebf2bd400bc3d17 /firmware/drivers/tuner/si4700.c
parent58ca43dc9d305574c37d163624bdda08fb7510d4 (diff)
downloadrockbox-85fd1000796986dbb77f4112c37833db7de781dc.tar.gz
rockbox-85fd1000796986dbb77f4112c37833db7de781dc.zip
si4700: revert r22641
bits 13:0 must not be modified (except for bit 8 ?) fixes FM on my Clipv1 (some Clips weren't affected) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23826 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/drivers/tuner/si4700.c')
-rw-r--r--firmware/drivers/tuner/si4700.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/drivers/tuner/si4700.c b/firmware/drivers/tuner/si4700.c
index c19df6a7bb..be9b6a4068 100644
--- a/firmware/drivers/tuner/si4700.c
+++ b/firmware/drivers/tuner/si4700.c
@@ -297,7 +297,7 @@ void si4700_init(void)
297#ifdef USE_INTERNAL_OSCILLATOR 297#ifdef USE_INTERNAL_OSCILLATOR
298 /* Enable the internal oscillator 298 /* Enable the internal oscillator
299 (Si4702-16 needs this register to be initialised to 0x100) */ 299 (Si4702-16 needs this register to be initialised to 0x100) */
300 si4700_write_reg(TEST1, TEST1_XOSCEN | 0x100); 300 si4700_write_set(TEST1, TEST1_XOSCEN | 0x100);
301 sleep(HZ/2); 301 sleep(HZ/2);
302#endif 302#endif
303 } 303 }