From 15accefbe284cfa0c4735ecb5ae3d2127ac8cfff Mon Sep 17 00:00:00 2001 From: Zachary T Welch Date: Thu, 3 Dec 2009 04:14:41 -0800 Subject: [PATCH] change #include "arm_jtag.h" to Changes from the flat namespace to heirarchical one. Instead of writing: #include "arm_jtag.h" the following form should be used. #include The exception is from .c files in the same directory. --- src/target/arm7_9_common.h | 2 +- src/target/arm_adi_v5.h | 2 +- src/target/etm.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/target/arm7_9_common.h b/src/target/arm7_9_common.h index d43eaa6d5a..9cf8b41792 100644 --- a/src/target/arm7_9_common.h +++ b/src/target/arm7_9_common.h @@ -30,7 +30,7 @@ #define ARM7_9_COMMON_H #include "armv4_5.h" -#include "arm_jtag.h" +#include #define ARM7_9_COMMON_MAGIC 0x0a790a79 /**< */ diff --git a/src/target/arm_adi_v5.h b/src/target/arm_adi_v5.h index a78193c6d0..c268f96903 100644 --- a/src/target/arm_adi_v5.h +++ b/src/target/arm_adi_v5.h @@ -23,7 +23,7 @@ #ifndef ARM_ADI_V5_H #define ARM_ADI_V5_H -#include "arm_jtag.h" +#include #define DAP_IR_DPACC 0xA #define DAP_IR_APACC 0xB diff --git a/src/target/etm.h b/src/target/etm.h index c8da794768..60e4ea703f 100644 --- a/src/target/etm.h +++ b/src/target/etm.h @@ -24,7 +24,7 @@ #define ETM_H #include "trace.h" -#include "arm_jtag.h" +#include struct image; -- 2.30.2