From 6f929dbd93e1b2c0373f389060bf64e60e8194ab Mon Sep 17 00:00:00 2001 From: David Brownell Date: Sun, 13 Dec 2009 12:52:23 -0800 Subject: target files shouldn't #include Make these ".h" files adopt the same policy the ".c" files already follow: don't use syntax for private interfaces. If we ever get reviewed/supported "public" interfaces they should come exclusively from some include/... directory; that'll be the time to switch to <...> syntax for any subsystem's own interfaces. Signed-off-by: David Brownell --- src/target/arm920t.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/target/arm920t.h') diff --git a/src/target/arm920t.h b/src/target/arm920t.h index 0eb14fc7..a75f01ab 100644 --- a/src/target/arm920t.h +++ b/src/target/arm920t.h @@ -20,8 +20,8 @@ #ifndef ARM920T_H #define ARM920T_H -#include -#include +#include "arm9tdmi.h" +#include "armv4_5_mmu.h" #define ARM920T_COMMON_MAGIC 0xa920a920 -- cgit v1.2.3