From 15accefbe284cfa0c4735ecb5ae3d2127ac8cfff Mon Sep 17 00:00:00 2001
From: Zachary T Welch <zw@superlucidity.net>
Date: Thu, 3 Dec 2009 04:14:41 -0800
Subject: change #include "arm_jtag.h" to <target/arm_jtag.h>

Changes from the flat namespace to heirarchical one.  Instead of writing:

	#include "arm_jtag.h"

the following form should be used.

	#include <target/arm_jtag.h>

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(-)

(limited to 'src')

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 <target/arm_jtag.h>
 
 #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 <target/arm_jtag.h>
 
 #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 <target/arm_jtag.h>
 
 struct image;
 
-- 
cgit v1.2.3