summaryrefslogtreecommitdiff
path: root/firmware/drivers/audio/tlv320.c
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2014-01-05 20:32:09 +0100
committerThomas Martitz <kugel@rockbox.org>2014-01-05 20:32:09 +0100
commit22a28f9caa2f96b52e1a427c32851298e14f8f33 (patch)
tree219467e72d72ea4204c28dcf6f8fd3643e5f8009 /firmware/drivers/audio/tlv320.c
parent2f4a94189da37e226a3a66766ed16726e04b5f36 (diff)
downloadrockbox-22a28f9caa2f96b52e1a427c32851298e14f8f33.tar.gz
rockbox-22a28f9caa2f96b52e1a427c32851298e14f8f33.zip
Add missing kernel.h includes (hopefully all of them).
Change-Id: I9c1825296a788587b8d494d8514b3314847b0ff0
Diffstat (limited to 'firmware/drivers/audio/tlv320.c')
-rw-r--r--firmware/drivers/audio/tlv320.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/firmware/drivers/audio/tlv320.c b/firmware/drivers/audio/tlv320.c
index 9fa676f3d5..c4c748d527 100644
--- a/firmware/drivers/audio/tlv320.c
+++ b/firmware/drivers/audio/tlv320.c
@@ -18,9 +18,11 @@
18 * KIND, either express or implied. 18 * KIND, either express or implied.
19 * 19 *
20 ****************************************************************************/ 20 ****************************************************************************/
21
21#include "config.h" 22#include "config.h"
22#include "logf.h"
23#include "system.h" 23#include "system.h"
24#include "kernel.h"
25#include "logf.h"
24#include "string.h" 26#include "string.h"
25#include "audio.h" 27#include "audio.h"
26 28
@@ -313,4 +315,3 @@ void audiohw_set_monitor(bool enable)
313 tlv320_write_reg(REG_PC, value_pc); 315 tlv320_write_reg(REG_PC, value_pc);
314} 316}
315#endif /* HAVE_RECORDING */ 317#endif /* HAVE_RECORDING */
316