summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/fixedpoint.c2
-rw-r--r--apps/settings.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/fixedpoint.c b/apps/fixedpoint.c
index 5051cc78e7..b212929245 100644
--- a/apps/fixedpoint.c
+++ b/apps/fixedpoint.c
@@ -353,7 +353,7 @@ long fp16_exp(int x)
353/** FIXED POINT EXP10 353/** FIXED POINT EXP10
354 * Return 10^x as FP integer. Argument is FP integer. 354 * Return 10^x as FP integer. Argument is FP integer.
355 */ 355 */
356static long fp_exp10(long x, unsigned int fracbits) 356long fp_exp10(long x, unsigned int fracbits)
357{ 357{
358 long k; 358 long k;
359 long z; 359 long z;
diff --git a/apps/settings.c b/apps/settings.c
index 1bb6c74b43..0984143dbb 100644
--- a/apps/settings.c
+++ b/apps/settings.c
@@ -723,7 +723,7 @@ void settings_apply_pm_range(void)
723void sound_settings_apply(void) 723void sound_settings_apply(void)
724{ 724{
725#if CONFIG_CODEC == SWCODEC 725#if CONFIG_CODEC == SWCODEC
726 sound_set_dsp_callback(dsp_callback); 726 audiohw_swcodec_set_callback(dsp_callback);
727#endif 727#endif
728#ifdef AUDIOHW_HAVE_BASS 728#ifdef AUDIOHW_HAVE_BASS
729 sound_set(SOUND_BASS, global_settings.bass); 729 sound_set(SOUND_BASS, global_settings.bass);