diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:14:42 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:24:41 -0800 |
commit | ddea03304310e1342ee127fc7e6507bbfb237ae4 (patch) | |
tree | 5887aac2edfb178addb8eacccaa01938194cd7b7 /src/target | |
parent | 15accefbe284cfa0c4735ecb5ae3d2127ac8cfff (diff) | |
download | openocd_libswd-ddea03304310e1342ee127fc7e6507bbfb237ae4.tar.gz openocd_libswd-ddea03304310e1342ee127fc7e6507bbfb237ae4.tar.bz2 openocd_libswd-ddea03304310e1342ee127fc7e6507bbfb237ae4.tar.xz openocd_libswd-ddea03304310e1342ee127fc7e6507bbfb237ae4.zip |
change #include "armv4_5.h" to <target/armv4_5.h>
Changes from the flat namespace to heirarchical one. Instead of writing:
#include "armv4_5.h"
the following form should be used.
#include <target/armv4_5.h>
The exception is from .c files in the same directory.
Diffstat (limited to 'src/target')
-rw-r--r-- | src/target/arm11.h | 2 | ||||
-rw-r--r-- | src/target/arm7_9_common.h | 2 | ||||
-rw-r--r-- | src/target/armv7a.h | 2 | ||||
-rw-r--r-- | src/target/armv7m.h | 2 | ||||
-rw-r--r-- | src/target/xscale.h | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/src/target/arm11.h b/src/target/arm11.h index fd147207..b118e1c6 100644 --- a/src/target/arm11.h +++ b/src/target/arm11.h @@ -23,7 +23,7 @@ #ifndef ARM11_H #define ARM11_H -#include "armv4_5.h" +#include <target/armv4_5.h> #include <target/arm_dpm.h> #define ARM11_TAP_DEFAULT TAP_INVALID diff --git a/src/target/arm7_9_common.h b/src/target/arm7_9_common.h index 9cf8b417..7555bec2 100644 --- a/src/target/arm7_9_common.h +++ b/src/target/arm7_9_common.h @@ -29,7 +29,7 @@ #ifndef ARM7_9_COMMON_H #define ARM7_9_COMMON_H -#include "armv4_5.h" +#include <target/armv4_5.h> #include <target/arm_jtag.h> #define ARM7_9_COMMON_MAGIC 0x0a790a79 /**< */ diff --git a/src/target/armv7a.h b/src/target/armv7a.h index 9158d787..da8ccdf4 100644 --- a/src/target/armv7a.h +++ b/src/target/armv7a.h @@ -20,7 +20,7 @@ #define ARMV7A_H #include <target/arm_adi_v5.h> -#include "armv4_5.h" +#include <target/armv4_5.h> #include "armv4_5_mmu.h" #include "armv4_5_cache.h" #include <target/arm_dpm.h> diff --git a/src/target/armv7m.h b/src/target/armv7m.h index 46871e1e..353860a9 100644 --- a/src/target/armv7m.h +++ b/src/target/armv7m.h @@ -27,7 +27,7 @@ #define ARMV7M_COMMON_H #include <target/arm_adi_v5.h> -#include "armv4_5.h" +#include <target/armv4_5.h> /* define for enabling armv7 gdb workarounds */ #if 1 diff --git a/src/target/xscale.h b/src/target/xscale.h index 0a70ecb3..9e19f45a 100644 --- a/src/target/xscale.h +++ b/src/target/xscale.h @@ -23,7 +23,7 @@ #ifndef XSCALE_H #define XSCALE_H -#include "armv4_5.h" +#include <target/armv4_5.h> #include "armv4_5_mmu.h" #include "trace.h" |