summaryrefslogtreecommitdiff
path: root/firmware/export/sound.h
diff options
context:
space:
mode:
authorMarcoen Hirschberg <marcoen@gmail.com>2007-05-22 20:17:35 +0000
committerMarcoen Hirschberg <marcoen@gmail.com>2007-05-22 20:17:35 +0000
commit10e21d19bfda9afa2a1569db9a5e4a3e89a4e784 (patch)
treec5d0d4c0786f15d1203d7589d6e899bf14e98aea /firmware/export/sound.h
parent4df0c7795407966afb468a941aae1ea695d70cae (diff)
downloadrockbox-10e21d19bfda9afa2a1569db9a5e4a3e89a4e784.tar.gz
rockbox-10e21d19bfda9afa2a1569db9a5e4a3e89a4e784.zip
make audiohw.h include the DAC header files
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13473 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/sound.h')
-rw-r--r--firmware/export/sound.h21
1 files changed, 1 insertions, 20 deletions
diff --git a/firmware/export/sound.h b/firmware/export/sound.h
index 59e8853e82..929b83b9e6 100644
--- a/firmware/export/sound.h
+++ b/firmware/export/sound.h
@@ -20,26 +20,7 @@
20#define SOUND_H 20#define SOUND_H
21 21
22#include <inttypes.h> 22#include <inttypes.h>
23#ifdef HAVE_UDA1380 23#include <audiohw.h>
24#include "uda1380.h"
25#elif defined(HAVE_WM8751)
26#include "wm8751.h"
27#elif defined(HAVE_WM8975)
28#include "wm8975.h"
29#elif defined(HAVE_WM8758)
30#include "wm8758.h"
31#elif defined(HAVE_WM8731) || defined(HAVE_WM8721)
32#include "wm8731l.h"
33#elif defined(HAVE_TLV320)
34#include "tlv320.h"
35#elif defined(HAVE_AS3514)
36#include "as3514.h"
37#elif defined(HAVE_MAS35XX)
38#include "mas35xx.h"
39#else
40/* For targets without audio */
41#include "audiohw.h"
42#endif
43 24
44extern void audiohw_postinit(void); 25extern void audiohw_postinit(void);
45 26