summaryrefslogtreecommitdiff
path: root/apps/audio_path.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/audio_path.c')
-rw-r--r--apps/audio_path.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/audio_path.c b/apps/audio_path.c
index 0469d4412a..dab43ebf42 100644
--- a/apps/audio_path.c
+++ b/apps/audio_path.c
@@ -42,7 +42,7 @@
42#endif 42#endif
43#endif 43#endif
44 44
45#ifndef SIMULATOR 45#if (CONFIG_PLATFORM & PLATFORM_NATIVE)
46 46
47#ifdef AUDIO_CPU_BOOST 47#ifdef AUDIO_CPU_BOOST
48static void audio_cpu_boost(bool state) 48static void audio_cpu_boost(bool state)
@@ -115,7 +115,7 @@ int audio_get_spdif_sample_rate(void)
115} /* audio_get_spdif_sample_rate */ 115} /* audio_get_spdif_sample_rate */
116#endif /* HAVE_SPDIF_IN */ 116#endif /* HAVE_SPDIF_IN */
117 117
118#else /* SIMULATOR */ 118#else /* PLATFORM_HOSTED */
119 119
120/** Sim stubs **/ 120/** Sim stubs **/
121 121
@@ -153,4 +153,4 @@ int audio_get_spdif_sample_rate(void)
153} /* audio_get_spdif_sample_rate */ 153} /* audio_get_spdif_sample_rate */
154#endif /* HAVE_SPDIF_IN */ 154#endif /* HAVE_SPDIF_IN */
155 155
156#endif /* !SIMULATOR */ 156#endif /* PLATFORM_NATIVE */