summaryrefslogtreecommitdiff
path: root/firmware/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers')
-rw-r--r--firmware/drivers/audio/uda1380.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/firmware/drivers/audio/uda1380.c b/firmware/drivers/audio/uda1380.c
index 156eb822b6..079175d966 100644
--- a/firmware/drivers/audio/uda1380.c
+++ b/firmware/drivers/audio/uda1380.c
@@ -227,11 +227,11 @@ void audiohw_set_frequency(int fsel)
227 MIX_CTL_SEL_NS, 227 MIX_CTL_SEL_NS,
228 WSPLL_25_50 | SYSCLK_256FS 228 WSPLL_25_50 | SYSCLK_256FS
229 }, 229 },
230 [HW_FREQ_88] = 230 HW_HAVE_88_([HW_FREQ_88] =
231 { 231 {
232 MIX_CTL_SEL_NS, 232 MIX_CTL_SEL_NS,
233 WSPLL_50_100 | SYSCLK_256FS 233 WSPLL_50_100 | SYSCLK_256FS
234 }, 234 },)
235 }; 235 };
236 236
237 const unsigned short *ent; 237 const unsigned short *ent;
@@ -243,6 +243,7 @@ void audiohw_set_frequency(int fsel)
243 243
244#ifdef USE_WSPLL 244#ifdef USE_WSPLL
245 /* Enable WSPLL if needed (for Iriver H100 and H300 series) */ 245 /* Enable WSPLL if needed (for Iriver H100 and H300 series) */
246HW_HAVE_88_(
246 if (fsel == HW_FREQ_88) 247 if (fsel == HW_FREQ_88)
247 { 248 {
248 /* Only at this case we need use WSPLL on DAC part for Iriver H100 and H300 series, because Coldfire work 249 /* Only at this case we need use WSPLL on DAC part for Iriver H100 and H300 series, because Coldfire work
@@ -251,6 +252,7 @@ void audiohw_set_frequency(int fsel)
251 if (!wspll_enable) wspll_on(true); 252 if (!wspll_enable) wspll_on(true);
252 } 253 }
253 else 254 else
255)
254 { 256 {
255 /* At this case WSPLL clock and SYSCLK has same value and we don't use WSPLL to avoid WSPLL errors */ 257 /* At this case WSPLL clock and SYSCLK has same value and we don't use WSPLL to avoid WSPLL errors */
256 if (wspll_enable) wspll_on(false); 258 if (wspll_enable) wspll_on(false);