diff options
author | David Brownell <dbrownell@users.sourceforge.net> | 2009-11-16 00:35:11 -0800 |
---|---|---|
committer | David Brownell <dbrownell@users.sourceforge.net> | 2009-11-16 00:35:11 -0800 |
commit | 1186f7efa72a86a7000dce60b090bd4f822cdceb (patch) | |
tree | 019473f28ff166a95f9ff1a24e6b92653fa52008 /src/ecosboard.c | |
parent | db094c2e60176b3c63ce788159b04a7024ad1010 (diff) | |
download | riscv-openocd-1186f7efa72a86a7000dce60b090bd4f822cdceb.zip riscv-openocd-1186f7efa72a86a7000dce60b090bd4f822cdceb.tar.gz riscv-openocd-1186f7efa72a86a7000dce60b090bd4f822cdceb.tar.bz2 |
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/ecosboard.c')
-rw-r--r-- | src/ecosboard.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/ecosboard.c b/src/ecosboard.c index e38316c..95d41cb 100644 --- a/src/ecosboard.c +++ b/src/ecosboard.c @@ -21,18 +21,15 @@ #include "config.h" #endif -#include "log.h" #include "types.h" #include "jtag.h" #include "configuration.h" #include "xsvf.h" #include "svf.h" #include "target.h" -#include "flash.h" #include "nand.h" #include "pld.h" -#include "command.h" #include "server.h" #include "telnet_server.h" #include "gdb_server.h" |