diff options
author | David Brownell <dbrownell@users.sourceforge.net> | 2009-11-16 15:27:40 -0800 |
---|---|---|
committer | David Brownell <dbrownell@users.sourceforge.net> | 2009-11-16 15:27:40 -0800 |
commit | bf972374011359a1d160b0359e59c4350e78aefe (patch) | |
tree | dd94f73a1423618402c68ec02952a7ed8ba95f57 | |
parent | 2fb58116a58f7928af75839e65c07f7d55c81500 (diff) | |
download | openocd_libswd-bf972374011359a1d160b0359e59c4350e78aefe.tar.gz openocd_libswd-bf972374011359a1d160b0359e59c4350e78aefe.tar.bz2 openocd_libswd-bf972374011359a1d160b0359e59c4350e78aefe.tar.xz openocd_libswd-bf972374011359a1d160b0359e59c4350e78aefe.zip |
target: don't include "log.h" from "armv4_5.h"
No point in multiple includes, and that file doesn't
use its functions any more.
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
-rw-r--r-- | src/target/arm_simulator.c | 1 | ||||
-rw-r--r-- | src/target/armv4_5.h | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/src/target/arm_simulator.c b/src/target/arm_simulator.c index a353c132..31163b47 100644 --- a/src/target/arm_simulator.c +++ b/src/target/arm_simulator.c @@ -29,6 +29,7 @@ #include "arm_simulator.h" #include "binarybuffer.h" #include "register.h" +#include "log.h" static uint32_t arm_shift(uint8_t shift, uint32_t Rm, diff --git a/src/target/armv4_5.h b/src/target/armv4_5.h index 1e3ee42d..5fef0942 100644 --- a/src/target/armv4_5.h +++ b/src/target/armv4_5.h @@ -27,7 +27,6 @@ #define ARMV4_5_H #include "target.h" -#include "log.h" typedef enum armv4_5_mode { |