summaryrefslogtreecommitdiff
path: root/firmware/tuner.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/tuner.c')
-rw-r--r--firmware/tuner.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/firmware/tuner.c b/firmware/tuner.c
index 4d3866dc8e..3232147bbb 100644
--- a/firmware/tuner.c
+++ b/firmware/tuner.c
@@ -89,8 +89,8 @@ const struct si4700_region_data si4700_region_data[TUNER_NUM_REGIONS] =
89}; 89};
90#endif /* (CONFIG_TUNER & SI4700) */ 90#endif /* (CONFIG_TUNER & SI4700) */
91 91
92#if (CONFIG_TUNER & FMCLIPPLUS) 92#if (CONFIG_TUNER & RDA5802)
93const struct fmclipplus_region_data fmclipplus_region_data[TUNER_NUM_REGIONS] = 93const struct rda5802_region_data rda5802_region_data[TUNER_NUM_REGIONS] =
94{ 94{
95 [REGION_EUROPE] = { 1, 0 }, /* 50uS, US/Europe band */ 95 [REGION_EUROPE] = { 1, 0 }, /* 50uS, US/Europe band */
96 [REGION_US_CANADA] = { 0, 0 }, /* 75uS, US/Europe band */ 96 [REGION_US_CANADA] = { 0, 0 }, /* 75uS, US/Europe band */
@@ -99,7 +99,7 @@ const struct fmclipplus_region_data fmclipplus_region_data[TUNER_NUM_REGIONS] =
99 [REGION_ITALY] = { 1, 0 }, /* 50uS, US/Europe band */ 99 [REGION_ITALY] = { 1, 0 }, /* 50uS, US/Europe band */
100 [REGION_OTHER] = { 1, 0 }, /* 50uS, US/Europe band */ 100 [REGION_OTHER] = { 1, 0 }, /* 50uS, US/Europe band */
101}; 101};
102#endif /* (CONFIG_TUNER & FMCLIPPLUS) */ 102#endif /* (CONFIG_TUNER & RDA5802) */
103 103
104#if (CONFIG_TUNER & IPOD_REMOTE_TUNER) 104#if (CONFIG_TUNER & IPOD_REMOTE_TUNER)
105const struct rmt_tuner_region_data 105const struct rmt_tuner_region_data
@@ -163,11 +163,11 @@ void tuner_init(void)
163 si4700_get, 163 si4700_get,
164 si4700_init()) 164 si4700_init())
165 #endif 165 #endif
166 #if (CONFIG_TUNER & FMCLIPPLUS) 166 #if (CONFIG_TUNER & RDA5802)
167 TUNER_TYPE_CASE(FMCLIPPLUS, 167 TUNER_TYPE_CASE(RDA5802,
168 fmclipplus_set, 168 rda5802_set,
169 fmclipplus_get, 169 rda5802_get,
170 fmclipplus_init()) 170 rda5802_init())
171 #endif 171 #endif
172 } 172 }
173} 173}