diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:14:39 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:24:40 -0800 |
commit | 2c35b35e111b5a23a3316e02e419c212840c4cc2 (patch) | |
tree | 95137ca636b6a36ce4142da55ff13f49c58d523e | |
parent | 41e92d8a7a987a5bbdeb7e5b36595c8bcc62e620 (diff) | |
download | openocd+libswd-2c35b35e111b5a23a3316e02e419c212840c4cc2.tar.gz openocd+libswd-2c35b35e111b5a23a3316e02e419c212840c4cc2.tar.bz2 openocd+libswd-2c35b35e111b5a23a3316e02e419c212840c4cc2.tar.xz openocd+libswd-2c35b35e111b5a23a3316e02e419c212840c4cc2.zip |
change #include "arm9tdmi.h" to <target/arm9tdmi.h>
Changes from the flat namespace to heirarchical one. Instead of writing:
#include "arm9tdmi.h"
the following form should be used.
#include <target/arm9tdmi.h>
The exception is from .c files in the same directory.
-rw-r--r-- | src/target/arm920t.h | 2 | ||||
-rw-r--r-- | src/target/arm926ejs.h | 2 | ||||
-rw-r--r-- | src/target/arm966e.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/target/arm920t.h b/src/target/arm920t.h index a75f01ab..97d0261d 100644 --- a/src/target/arm920t.h +++ b/src/target/arm920t.h @@ -20,7 +20,7 @@ #ifndef ARM920T_H #define ARM920T_H -#include "arm9tdmi.h" +#include <target/arm9tdmi.h> #include "armv4_5_mmu.h" #define ARM920T_COMMON_MAGIC 0xa920a920 diff --git a/src/target/arm926ejs.h b/src/target/arm926ejs.h index 274733bf..9202fc6f 100644 --- a/src/target/arm926ejs.h +++ b/src/target/arm926ejs.h @@ -20,7 +20,7 @@ #ifndef ARM926EJS_H #define ARM926EJS_H -#include "arm9tdmi.h" +#include <target/arm9tdmi.h> #include "armv4_5_mmu.h" #define ARM926EJS_COMMON_MAGIC 0xa926a926 diff --git a/src/target/arm966e.h b/src/target/arm966e.h index 24dcec30..6c169700 100644 --- a/src/target/arm966e.h +++ b/src/target/arm966e.h @@ -23,7 +23,7 @@ #ifndef ARM966E_H #define ARM966E_H -#include "arm9tdmi.h" +#include <target/arm9tdmi.h> #define ARM966E_COMMON_MAGIC 0x20f920f9 |