summaryrefslogtreecommitdiff
path: root/src/target
diff options
context:
space:
mode:
authorDavid Brownell <dbrownell@users.sourceforge.net>2009-11-16 00:35:11 -0800
committerDavid Brownell <dbrownell@users.sourceforge.net>2009-11-16 00:35:11 -0800
commit1186f7efa72a86a7000dce60b090bd4f822cdceb (patch)
tree019473f28ff166a95f9ff1a24e6b92653fa52008 /src/target
parentdb094c2e60176b3c63ce788159b04a7024ad1010 (diff)
downloadopenocd_libswd-1186f7efa72a86a7000dce60b090bd4f822cdceb.tar.gz
openocd_libswd-1186f7efa72a86a7000dce60b090bd4f822cdceb.tar.bz2
openocd_libswd-1186f7efa72a86a7000dce60b090bd4f822cdceb.tar.xz
openocd_libswd-1186f7efa72a86a7000dce60b090bd4f822cdceb.zip
target: less implicit inclusion of "command.h"
Lots of files still include it, often through needless duplicate inclusion of "log.h"; sigh. This cleans up the inclusion graph a bunch, so there are fewer inclusion paths, but it doesn't change much otherwise. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Diffstat (limited to 'src/target')
-rw-r--r--src/target/arm_simulator.c1
-rw-r--r--src/target/armv4_5.h1
-rw-r--r--src/target/armv7a.c1
-rw-r--r--src/target/armv7a.h1
-rw-r--r--src/target/target.h6
5 files changed, 3 insertions, 7 deletions
diff --git a/src/target/arm_simulator.c b/src/target/arm_simulator.c
index 46cd5587..120d5b92 100644
--- a/src/target/arm_simulator.c
+++ b/src/target/arm_simulator.c
@@ -27,7 +27,6 @@
#include "armv4_5.h"
#include "arm_disassembler.h"
#include "arm_simulator.h"
-#include "log.h"
#include "binarybuffer.h"
diff --git a/src/target/armv4_5.h b/src/target/armv4_5.h
index 83b38b65..6c0b881a 100644
--- a/src/target/armv4_5.h
+++ b/src/target/armv4_5.h
@@ -28,7 +28,6 @@
#include "register.h"
#include "target.h"
-#include "log.h"
#include "etm.h"
typedef enum armv4_5_mode
diff --git a/src/target/armv7a.c b/src/target/armv7a.c
index c94d3b0f..7b33053d 100644
--- a/src/target/armv7a.c
+++ b/src/target/armv7a.c
@@ -27,7 +27,6 @@
#include "target.h"
#include "register.h"
-#include "log.h"
#include "binarybuffer.h"
#include "command.h"
diff --git a/src/target/armv7a.h b/src/target/armv7a.h
index 5cdffd86..625c3a9a 100644
--- a/src/target/armv7a.h
+++ b/src/target/armv7a.h
@@ -21,7 +21,6 @@
#include "register.h"
#include "target.h"
-#include "log.h"
#include "arm_adi_v5.h"
#include "armv4_5.h"
#include "armv4_5_mmu.h"
diff --git a/src/target/target.h b/src/target/target.h
index 75bc4f02..51fb299c 100644
--- a/src/target/target.h
+++ b/src/target/target.h
@@ -27,8 +27,8 @@
#define TARGET_H
#include <stddef.h>
-
-#include "command.h"
+#include "types.h"
+#include "jim.h"
struct reg;
struct trace;
@@ -230,7 +230,7 @@ enum target_event
struct target_event_action {
enum target_event event;
- Jim_Obj *body;
+ struct Jim_Obj *body;
int has_percent;
struct target_event_action *next;
};