summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2005-03-31 06:50:34 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2005-03-31 06:50:34 +0000
commit9253d4d5de1700f9d51c4193844763538a9ac323 (patch)
tree4dee1aa2091b27e1ee4f87b98df336565c33d335 /apps
parent7eeb40b649fe8396838531fbf9966bce3b9fc2c1 (diff)
downloadrockbox-9253d4d5de1700f9d51c4193844763538a9ac323.tar.gz
rockbox-9253d4d5de1700f9d51c4193844763538a9ac323.zip
iRiver: call pcm_init() instead of uda1380_init()
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6236 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/main.c b/apps/main.c
index 4f3980d84c..505022481e 100644
--- a/apps/main.c
+++ b/apps/main.c
@@ -61,7 +61,7 @@
61 61
62 62
63#if (CONFIG_HWCODEC == MASNONE) 63#if (CONFIG_HWCODEC == MASNONE)
64#include "uda1380.h" 64#include "pcm_playback.h"
65#endif 65#endif
66 66
67#ifdef CONFIG_TUNER 67#ifdef CONFIG_TUNER
@@ -269,7 +269,7 @@ void init(void)
269#endif /* #ifdef AUTOROCK */ 269#endif /* #ifdef AUTOROCK */
270 270
271#if (CONFIG_HWCODEC == MASNONE) 271#if (CONFIG_HWCODEC == MASNONE)
272 uda1380_init(); 272 pcm_init();
273#endif 273#endif
274} 274}
275 275