summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcoen Hirschberg <marcoen@gmail.com>2006-12-06 13:48:50 +0000
committerMarcoen Hirschberg <marcoen@gmail.com>2006-12-06 13:48:50 +0000
commit998f1c57e25c628ed21dfbc7728dcbe4f55e6bd8 (patch)
treedca1aaa4245652c66a6429da0f53cb21e6bc7838
parent1b967f41df90cd183c42e96d40acaeea671c1016 (diff)
downloadrockbox-998f1c57e25c628ed21dfbc7728dcbe4f55e6bd8.tar.gz
rockbox-998f1c57e25c628ed21dfbc7728dcbe4f55e6bd8.zip
put back the return types which got lost in the previous commit
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11676 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/export/tlv320.h2
-rw-r--r--firmware/export/uda1380.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/firmware/export/tlv320.h b/firmware/export/tlv320.h
index 3cf5bd80cd..ebb126ddf5 100644
--- a/firmware/export/tlv320.h
+++ b/firmware/export/tlv320.h
@@ -23,7 +23,7 @@
#define VOLUME_MIN -730
#define VOLUME_MAX 60
-extern tenthdb2master(int db);
+extern int tenthdb2master(int db);
/*** definitions ***/
diff --git a/firmware/export/uda1380.h b/firmware/export/uda1380.h
index f8c8d6dd66..f9c73d0471 100644
--- a/firmware/export/uda1380.h
+++ b/firmware/export/uda1380.h
@@ -24,8 +24,8 @@
#define VOLUME_MIN -840
#define VOLUME_MAX 0
-extern tenthdb2master(int db);
-extern tenthdb2mixer(int db);
+extern int tenthdb2master(int db);
+extern int tenthdb2mixer(int db);
extern void audiohw_reset(void);
extern int audiohw_init(void);