summaryrefslogtreecommitdiff
path: root/src/target
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-12-03 04:14:30 -0800
committerZachary T Welch <zw@superlucidity.net>2009-12-03 04:22:52 -0800
commitdf0e90ec8c728be50f1457ecc513d78de044f5a4 (patch)
tree73c1742fe3fb11deb8b2bd409af7bfcffab694f4 /src/target
parent6512e5e36b067ae458cb7f6a9fdfb08d38da3583 (diff)
downloadopenocd_libswd-df0e90ec8c728be50f1457ecc513d78de044f5a4.tar.gz
openocd_libswd-df0e90ec8c728be50f1457ecc513d78de044f5a4.tar.bz2
openocd_libswd-df0e90ec8c728be50f1457ecc513d78de044f5a4.tar.xz
openocd_libswd-df0e90ec8c728be50f1457ecc513d78de044f5a4.zip
change #include "types.h" to <helper/types.h>
Changes from the flat namespace to heirarchical one. Instead of writing: #include "types.h" the following form should be used. #include <helper/types.h> The exception is from .c files in the same directory.
Diffstat (limited to 'src/target')
-rw-r--r--src/target/arm_disassembler.h2
-rw-r--r--src/target/arm_simulator.h2
-rw-r--r--src/target/armv4_5_cache.h2
-rw-r--r--src/target/breakpoints.h2
-rw-r--r--src/target/mips_m4k.h2
-rw-r--r--src/target/register.c2
-rw-r--r--src/target/target.h2
-rw-r--r--src/target/target_type.h2
-rw-r--r--src/target/trace.h2
9 files changed, 9 insertions, 9 deletions
diff --git a/src/target/arm_disassembler.h b/src/target/arm_disassembler.h
index 774dd2c2..156c037e 100644
--- a/src/target/arm_disassembler.h
+++ b/src/target/arm_disassembler.h
@@ -20,7 +20,7 @@
#ifndef ARM_DISASSEMBLER_H
#define ARM_DISASSEMBLER_H
-#include "types.h"
+#include <helper/types.h>
enum arm_instruction_type
{
diff --git a/src/target/arm_simulator.h b/src/target/arm_simulator.h
index 616627a4..daca3711 100644
--- a/src/target/arm_simulator.h
+++ b/src/target/arm_simulator.h
@@ -20,7 +20,7 @@
#ifndef ARM_SIMULATOR_H
#define ARM_SIMULATOR_H
-#include "types.h"
+#include <helper/types.h>
struct target;
diff --git a/src/target/armv4_5_cache.h b/src/target/armv4_5_cache.h
index 1a82b671..c529b458 100644
--- a/src/target/armv4_5_cache.h
+++ b/src/target/armv4_5_cache.h
@@ -20,7 +20,7 @@
#ifndef ARMV4_5_CACHE_H
#define ARMV4_5_CACHE_H
-#include "types.h"
+#include <helper/types.h>
struct command_context;
diff --git a/src/target/breakpoints.h b/src/target/breakpoints.h
index a65f20e3..ee4d9d13 100644
--- a/src/target/breakpoints.h
+++ b/src/target/breakpoints.h
@@ -20,7 +20,7 @@
#ifndef BREAKPOINTS_H
#define BREAKPOINTS_H
-#include "types.h"
+#include <helper/types.h>
struct target;
diff --git a/src/target/mips_m4k.h b/src/target/mips_m4k.h
index a7c5bb39..c5f9be2b 100644
--- a/src/target/mips_m4k.h
+++ b/src/target/mips_m4k.h
@@ -23,7 +23,7 @@
#ifndef MIPS_M4K_H
#define MIPS_M4K_H
-#include "types.h"
+#include <helper/types.h>
struct target;
diff --git a/src/target/register.c b/src/target/register.c
index 7b26b740..355c8601 100644
--- a/src/target/register.c
+++ b/src/target/register.c
@@ -24,7 +24,7 @@
#include "config.h"
#endif
-#include "types.h"
+#include <helper/types.h>
#include "register.h"
#include <helper/log.h>
diff --git a/src/target/target.h b/src/target/target.h
index 43ac65fc..73190695 100644
--- a/src/target/target.h
+++ b/src/target/target.h
@@ -26,7 +26,7 @@
#ifndef TARGET_H
#define TARGET_H
-#include "types.h"
+#include <helper/types.h>
#include <helper/jim.h>
struct reg;
diff --git a/src/target/target_type.h b/src/target/target_type.h
index 15cf66be..67041b31 100644
--- a/src/target/target_type.h
+++ b/src/target/target_type.h
@@ -26,7 +26,7 @@
#ifndef TARGET_TYPE_H
#define TARGET_TYPE_H
-#include "types.h"
+#include <helper/types.h>
struct target;
diff --git a/src/target/trace.h b/src/target/trace.h
index c554c731..5fbedc4b 100644
--- a/src/target/trace.h
+++ b/src/target/trace.h
@@ -20,7 +20,7 @@
#ifndef TRACE_H
#define TRACE_H
-#include "types.h"
+#include <helper/types.h>
struct target;
struct command_context;