summaryrefslogtreecommitdiff
path: root/firmware/target/arm/imx233/dma-imx233.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/target/arm/imx233/dma-imx233.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/target/arm/imx233/dma-imx233.c')
-rw-r--r--firmware/target/arm/imx233/dma-imx233.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/target/arm/imx233/dma-imx233.c b/firmware/target/arm/imx233/dma-imx233.c
index 81ae5aeb72..6727e9b95b 100644
--- a/firmware/target/arm/imx233/dma-imx233.c
+++ b/firmware/target/arm/imx233/dma-imx233.c
@@ -18,8 +18,10 @@
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 "system.h" 23#include "system.h"
24#include "kernel.h"
23#include "dma-imx233.h" 25#include "dma-imx233.h"
24#include "lcd.h" 26#include "lcd.h"
25#include "string.h" 27#include "string.h"
@@ -287,4 +289,3 @@ struct imx233_dma_info_t imx233_dma_get_info(unsigned chan, unsigned flags)
287 s.nr_unaligned = apb_nr_unaligned[chan]; 289 s.nr_unaligned = apb_nr_unaligned[chan];
288 return s; 290 return s;
289} 291}
290