diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2013-04-15 13:24:29 -0400 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2013-04-15 13:24:29 -0400 |
| commit | bbd991ad63805533ec4e2558061bbba48bfab1a9 (patch) | |
| tree | 21986650ba75882d2100597591d4338dc6a14c10 /firmware/export | |
| parent | 0971f576341cf38c04d2d9735f0a385e62974108 (diff) | |
| download | rockbox-bbd991ad63805533ec4e2558061bbba48bfab1a9.zip rockbox-bbd991ad63805533ec4e2558061bbba48bfab1a9.tar.gz rockbox-bbd991ad63805533ec4e2558061bbba48bfab1a9.tar.bz2 rockbox-bbd991ad63805533ec4e2558061bbba48bfab1a9.tar.xz | |
Fix some more errors and warnings from 0c7b787.
Change-Id: Ib67d0ab344e36964cadbcc982dc2afe35733770b
Diffstat (limited to 'firmware/export')
| -rw-r--r-- | firmware/export/audiohw.h | 1 | ||||
| -rw-r--r-- | firmware/export/mas35xx.h | 3 | ||||
| -rw-r--r-- | firmware/export/wm8751.h | 2 |
3 files changed, 1 insertions, 5 deletions
diff --git a/firmware/export/audiohw.h b/firmware/export/audiohw.h index 4bd4ecb..3fce3fc 100644 --- a/firmware/export/audiohw.h +++ b/firmware/export/audiohw.h @@ -24,6 +24,7 @@ #include "config.h" #include <stdbool.h> +#include <inttypes.h> /* define some audiohw caps */ #define TREBLE_CAP (1 << 0) diff --git a/firmware/export/mas35xx.h b/firmware/export/mas35xx.h index 3f7912f..e374a1b 100644 --- a/firmware/export/mas35xx.h +++ b/firmware/export/mas35xx.h @@ -291,9 +291,6 @@ extern void audiohw_set_mdb_center(int value); extern void audiohw_set_mdb_shape(int value); extern void audiohw_set_mdb_enable(int value); extern void audiohw_set_superbass(int value); -extern void audiohw_set_balance(int val); -extern void audiohw_set_pitch(int32_t val); -extern int audiohw_get_pitch(void); #endif /* CONFIG_CODEC */ diff --git a/firmware/export/wm8751.h b/firmware/export/wm8751.h index c19bd15..aa18972 100644 --- a/firmware/export/wm8751.h +++ b/firmware/export/wm8751.h @@ -25,8 +25,6 @@ #define VOLUME_MIN -730 #define VOLUME_MAX 60 -#define AUDIOHW_SETTING(name, us, nd, st, minv, maxv, defv, expr...) - #if defined(HAVE_WM8750) #define AUDIOHW_CAPS (BASS_CAP | TREBLE_CAP | PRESCALER_CAP | \ BASS_CUTOFF_CAP | TREBLE_CUTOFF_CAP | \ |