summaryrefslogtreecommitdiff
path: root/firmware/export/sound.h
diff options
context:
space:
mode:
authorMarcoen Hirschberg <marcoen@gmail.com>2006-12-06 13:34:15 +0000
committerMarcoen Hirschberg <marcoen@gmail.com>2006-12-06 13:34:15 +0000
commit1b967f41df90cd183c42e96d40acaeea671c1016 (patch)
tree8b529db9c07a630b61d3483568b4cfe66f8ed600 /firmware/export/sound.h
parent3e24665c417c2dd7dc292c9f12efae4e6544aa11 (diff)
downloadrockbox-1b967f41df90cd183c42e96d40acaeea671c1016.tar.gz
rockbox-1b967f41df90cd183c42e96d40acaeea671c1016.zip
move some audio driver specific code to the correspoding files
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11675 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/sound.h')
-rw-r--r--firmware/export/sound.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/firmware/export/sound.h b/firmware/export/sound.h
index 33175e4166..2cf2ad3136 100644
--- a/firmware/export/sound.h
+++ b/firmware/export/sound.h
@@ -19,6 +19,18 @@
19#ifndef SOUND_H 19#ifndef SOUND_H
20#define SOUND_H 20#define SOUND_H
21 21
22#ifdef HAVE_UDA1380
23#include "uda1380.h"
24#elif defined(HAVE_WM8975) || defined(HAVE_WM8751)
25#include "wm8975.h"
26#elif defined(HAVE_WM8758)
27#include "wm8758.h"
28#elif defined(HAVE_WM8731) || defined(HAVE_WM8721)
29#include "wm8731l.h"
30#elif defined(HAVE_TLV320)
31#include "tlv320.h"
32#endif
33
22enum { 34enum {
23 SOUND_VOLUME = 0, 35 SOUND_VOLUME = 0,
24 SOUND_BASS, 36 SOUND_BASS,