summaryrefslogtreecommitdiff
path: root/src/target/target_request.c
diff options
context:
space:
mode:
authorDavid Brownell <dbrownell@users.sourceforge.net>2009-12-13 12:52:23 -0800
committerDavid Brownell <dbrownell@users.sourceforge.net>2009-12-13 12:52:23 -0800
commit38e376d232ecb3d6a436a20c09019d1a13b0d42b (patch)
tree86e24e00f6cb5ef1f4cc2560614b6ba7e1c3c251 /src/target/target_request.c
parent0a9d7cab6d76d1203d46e51140ad97d0b5cace56 (diff)
downloadopenocd+libswd-38e376d232ecb3d6a436a20c09019d1a13b0d42b.tar.gz
openocd+libswd-38e376d232ecb3d6a436a20c09019d1a13b0d42b.tar.bz2
openocd+libswd-38e376d232ecb3d6a436a20c09019d1a13b0d42b.tar.xz
openocd+libswd-38e376d232ecb3d6a436a20c09019d1a13b0d42b.zip
target: further shrink Jim-awareness
Don't include <helper/jim.h> from target.h ... not everything which touches targets needs to be able to talk to Jim. Plus, most files include this header by another path. Also, switch the affected files to use the classic sequence for #included files: all <framework/headers.h> first, then the "local_headers.h". This helps prevent growth of problematic layering, by minimizing entanglement. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Diffstat (limited to 'src/target/target_request.c')
-rw-r--r--src/target/target_request.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/target/target_request.c b/src/target/target_request.c
index fc0ba1ac..d22b8a2b 100644
--- a/src/target/target_request.c
+++ b/src/target/target_request.c
@@ -27,12 +27,13 @@
#include "config.h"
#endif
+#include <helper/log.h>
+#include <helper/binarybuffer.h>
+
#include "target.h"
#include "target_request.h"
#include "target_type.h"
-#include <helper/binarybuffer.h>
#include "trace.h"
-#include <helper/log.h>
static int charmsg_mode = 0;