From: Zachary T Welch Date: Thu, 3 Dec 2009 12:14:41 +0000 (-0800) Subject: change #include "arm_jtag.h" to X-Git-Tag: v0.4.0-rc1~179 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=15accefbe284cfa0c4735ecb5ae3d2127ac8cfff;p=openocd 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. --- diff --git a/src/target/arm7_9_common.h b/src/target/arm7_9_common.h index d43eaa6d..9cf8b417 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 a78193c6..c268f969 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 c8da7947..60e4ea70 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;