summaryrefslogtreecommitdiff
path: root/firmware/target/sh
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/target/sh
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/target/sh')
-rw-r--r--firmware/target/sh/archos/player/lcd-player.c5
-rw-r--r--firmware/target/sh/debug-sh.c6
2 files changed, 7 insertions, 4 deletions
diff --git a/firmware/target/sh/archos/player/lcd-player.c b/firmware/target/sh/archos/player/lcd-player.c
index 330cc266bc..95b0164bf5 100644
--- a/firmware/target/sh/archos/player/lcd-player.c
+++ b/firmware/target/sh/archos/player/lcd-player.c
@@ -20,10 +20,11 @@
20 * 20 *
21 ****************************************************************************/ 21 ****************************************************************************/
22 22
23#include "config.h"
24#include <string.h> 23#include <string.h>
25#include "hwcompat.h" 24#include "config.h"
26#include "system.h" 25#include "system.h"
26#include "kernel.h"
27#include "hwcompat.h"
27#include "lcd.h" 28#include "lcd.h"
28#include "lcd-charcell.h" 29#include "lcd-charcell.h"
29 30
diff --git a/firmware/target/sh/debug-sh.c b/firmware/target/sh/debug-sh.c
index 180c37f3c6..bee4896174 100644
--- a/firmware/target/sh/debug-sh.c
+++ b/firmware/target/sh/debug-sh.c
@@ -19,10 +19,12 @@
19 * 19 *
20 ****************************************************************************/ 20 ****************************************************************************/
21 21
22#include "config.h"
23#include "system.h"
24#include <stdbool.h> 22#include <stdbool.h>
25#include <string.h> 23#include <string.h>
24
25#include "config.h"
26#include "system.h"
27#include "kernel.h"
26#include "font.h" 28#include "font.h"
27#include "lcd.h" 29#include "lcd.h"
28#include "button.h" 30#include "button.h"