diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:14:29 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:22:52 -0800 |
commit | 6512e5e36b067ae458cb7f6a9fdfb08d38da3583 (patch) | |
tree | 49490993e98f16d33efd05296e76f603bf50c747 /src/target | |
parent | ba00ba47d289381d1fbfb84b6f4b18f8dff2f011 (diff) | |
download | openocd+libswd-6512e5e36b067ae458cb7f6a9fdfb08d38da3583.tar.gz openocd+libswd-6512e5e36b067ae458cb7f6a9fdfb08d38da3583.tar.bz2 openocd+libswd-6512e5e36b067ae458cb7f6a9fdfb08d38da3583.tar.xz openocd+libswd-6512e5e36b067ae458cb7f6a9fdfb08d38da3583.zip |
change #include "time_support.h" to <helper/time_support.h>
Changes from the flat namespace to heirarchical one. Instead of writing:
#include "time_support.h"
the following form should be used.
#include <helper/time_support.h>
The exception is from .c files in the same directory.
Diffstat (limited to 'src/target')
-rw-r--r-- | src/target/arm11.c | 2 | ||||
-rw-r--r-- | src/target/arm11_dbgtap.c | 2 | ||||
-rw-r--r-- | src/target/arm720t.c | 2 | ||||
-rw-r--r-- | src/target/arm7_9_common.c | 2 | ||||
-rw-r--r-- | src/target/arm920t.c | 2 | ||||
-rw-r--r-- | src/target/arm926ejs.c | 2 | ||||
-rw-r--r-- | src/target/arm_adi_v5.c | 2 | ||||
-rw-r--r-- | src/target/target.c | 2 | ||||
-rw-r--r-- | src/target/xscale.c | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/src/target/arm11.c b/src/target/arm11.c index 44c9ad30..124868e5 100644 --- a/src/target/arm11.c +++ b/src/target/arm11.c @@ -30,7 +30,7 @@ #include "breakpoints.h" #include "arm11_dbgtap.h" #include "arm_simulator.h" -#include "time_support.h" +#include <helper/time_support.h> #include "target_type.h" #include "algorithm.h" #include "register.h" diff --git a/src/target/arm11_dbgtap.c b/src/target/arm11_dbgtap.c index 7e1e9cba..3df1c658 100644 --- a/src/target/arm11_dbgtap.c +++ b/src/target/arm11_dbgtap.c @@ -27,7 +27,7 @@ #include "arm_jtag.h" #include "arm11_dbgtap.h" -#include "time_support.h" +#include <helper/time_support.h> #if 0 #define JTAG_DEBUG(expr ...) do { if (1) LOG_DEBUG(expr); } while (0) diff --git a/src/target/arm720t.c b/src/target/arm720t.c index d900d8ae..a4d274ea 100644 --- a/src/target/arm720t.c +++ b/src/target/arm720t.c @@ -25,7 +25,7 @@ #endif #include "arm720t.h" -#include "time_support.h" +#include <helper/time_support.h> #include "target_type.h" #include "register.h" diff --git a/src/target/arm7_9_common.c b/src/target/arm7_9_common.c index b5553cd8..255a85f5 100644 --- a/src/target/arm7_9_common.c +++ b/src/target/arm7_9_common.c @@ -34,7 +34,7 @@ #include "embeddedice.h" #include "target_request.h" #include "etm.h" -#include "time_support.h" +#include <helper/time_support.h> #include "arm_simulator.h" #include "algorithm.h" #include "register.h" diff --git a/src/target/arm920t.c b/src/target/arm920t.c index 17e7a55a..e8c1950f 100644 --- a/src/target/arm920t.c +++ b/src/target/arm920t.c @@ -22,7 +22,7 @@ #endif #include "arm920t.h" -#include "time_support.h" +#include <helper/time_support.h> #include "target_type.h" #include "register.h" diff --git a/src/target/arm926ejs.c b/src/target/arm926ejs.c index ca420aa6..4dec23da 100644 --- a/src/target/arm926ejs.c +++ b/src/target/arm926ejs.c @@ -25,7 +25,7 @@ #endif #include "arm926ejs.h" -#include "time_support.h" +#include <helper/time_support.h> #include "target_type.h" #include "register.h" diff --git a/src/target/arm_adi_v5.c b/src/target/arm_adi_v5.c index 72408e1e..6ca50ab7 100644 --- a/src/target/arm_adi_v5.c +++ b/src/target/arm_adi_v5.c @@ -39,7 +39,7 @@ #endif #include "arm_adi_v5.h" -#include "time_support.h" +#include <helper/time_support.h> /* * Transaction Mode: diff --git a/src/target/target.c b/src/target/target.c index 9a605f3d..e4260195 100644 --- a/src/target/target.c +++ b/src/target/target.c @@ -37,7 +37,7 @@ #include "target_type.h" #include "target_request.h" #include "breakpoints.h" -#include "time_support.h" +#include <helper/time_support.h> #include "register.h" #include "trace.h" #include "image.h" diff --git a/src/target/xscale.c b/src/target/xscale.c index ccb1de56..1acaba07 100644 --- a/src/target/xscale.c +++ b/src/target/xscale.c @@ -33,7 +33,7 @@ #include "arm_jtag.h" #include "arm_simulator.h" #include "arm_disassembler.h" -#include "time_support.h" +#include <helper/time_support.h> #include "register.h" #include "image.h" |