summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/main.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/main.c b/apps/main.c
index 36f26c9154..4f3980d84c 100644
--- a/apps/main.c
+++ b/apps/main.c
@@ -60,7 +60,9 @@
60#include "plugin.h" 60#include "plugin.h"
61 61
62 62
63#if (CONFIG_HWCODEC == MASNONE)
63#include "uda1380.h" 64#include "uda1380.h"
65#endif
64 66
65#ifdef CONFIG_TUNER 67#ifdef CONFIG_TUNER
66#include "radio.h" 68#include "radio.h"
@@ -266,8 +268,9 @@ void init(void)
266 } 268 }
267#endif /* #ifdef AUTOROCK */ 269#endif /* #ifdef AUTOROCK */
268 270
271#if (CONFIG_HWCODEC == MASNONE)
269 uda1380_init(); 272 uda1380_init();
270 273#endif
271} 274}
272 275
273int main(void) 276int main(void)