summaryrefslogtreecommitdiff
path: root/firmware/export/pcm.h
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2010-06-11 14:39:35 +0000
committerMichael Sevakis <jethead71@rockbox.org>2010-06-11 14:39:35 +0000
commit60f843bf181fba3fc509955195ecea786cc002b2 (patch)
tree31399c08bb3ec25dd98318e6f23bcd2f4a0191d0 /firmware/export/pcm.h
parentd5a27c2fb1d653bb133a57acacc06b9efdc3ce4c (diff)
downloadrockbox-60f843bf181fba3fc509955195ecea786cc002b2.tar.gz
rockbox-60f843bf181fba3fc509955195ecea786cc002b2.zip
Configure Gigabeat S with EABI compiler by default. Implement the INIT section that this enables (due to selective need for long calls). Remove pcm_postinit from INIT section since it's asynchronous. Disable strict aliasing on SPC codec for now just to shut it up.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26779 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/pcm.h')
-rw-r--r--firmware/export/pcm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/export/pcm.h b/firmware/export/pcm.h
index 304f120059..02fa04cb7e 100644
--- a/firmware/export/pcm.h
+++ b/firmware/export/pcm.h
@@ -68,7 +68,7 @@ void pcm_play_lock(void);
68void pcm_play_unlock(void); 68void pcm_play_unlock(void);
69 69
70void pcm_init(void) INIT_ATTR; 70void pcm_init(void) INIT_ATTR;
71void pcm_postinit(void) INIT_ATTR; 71void pcm_postinit(void);
72 72
73/* This is for playing "raw" PCM data */ 73/* This is for playing "raw" PCM data */
74void pcm_play_data(pcm_play_callback_type get_more, 74void pcm_play_data(pcm_play_callback_type get_more,