summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2009-06-20 23:02:49 +0000
committerRafaël Carré <rafael.carre@gmail.com>2009-06-20 23:02:49 +0000
commit1a98e973fb8b0a4838ae2a819bee94c4ca089060 (patch)
tree50cb8dfaf004a934a47ae0570a457fa68ee6c699
parentcb2c947b1b7fef96892f474144e61b8bbd87a615 (diff)
downloadrockbox-1a98e973fb8b0a4838ae2a819bee94c4ca089060.tar.gz
rockbox-1a98e973fb8b0a4838ae2a819bee94c4ca089060.zip
c200v2 : fix FM radio, the c200v2 uses the internal oscillator like others Sansa AMS
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21432 a1c6a512-1295-4272-9138-f99709370657
-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 3917095353..be9b6a4068 100644
--- a/firmware/drivers/tuner/si4700.c
+++ b/firmware/drivers/tuner/si4700.c
@@ -33,7 +33,7 @@
33/* some models use the internal 32 kHz oscillator which needs special attention 33/* some models use the internal 32 kHz oscillator which needs special attention
34 during initialisation, power-up and power-down. 34 during initialisation, power-up and power-down.
35*/ 35*/
36#if defined(SANSA_CLIP) || defined(SANSA_E200V2) || defined(SANSA_FUZE) 36#if defined(SANSA_CLIP) || defined(SANSA_E200V2) || defined(SANSA_FUZE) || defined(SANSA_C200V2)
37#define USE_INTERNAL_OSCILLATOR 37#define USE_INTERNAL_OSCILLATOR
38#elif defined(TOSHIBA_GIGABEAT_S) 38#elif defined(TOSHIBA_GIGABEAT_S)
39#define SI4700_GPIO_SETUP (SYSCONFIG1_GPIO1_HI_Z | \ 39#define SI4700_GPIO_SETUP (SYSCONFIG1_GPIO1_HI_Z | \