diff options
author | David Brownell <dbrownell@users.sourceforge.net> | 2009-12-13 12:52:23 -0800 |
---|---|---|
committer | David Brownell <dbrownell@users.sourceforge.net> | 2009-12-13 12:52:23 -0800 |
commit | 6f929dbd93e1b2c0373f389060bf64e60e8194ab (patch) | |
tree | bb48b54ab70516822afe05a2464e8382fa1e18c3 /src/target/mips32_dmaacc.h | |
parent | 38e376d232ecb3d6a436a20c09019d1a13b0d42b (diff) | |
download | riscv-openocd-6f929dbd93e1b2c0373f389060bf64e60e8194ab.zip riscv-openocd-6f929dbd93e1b2c0373f389060bf64e60e8194ab.tar.gz riscv-openocd-6f929dbd93e1b2c0373f389060bf64e60e8194ab.tar.bz2 |
target files shouldn't #include <target/...h>
Make these ".h" files adopt the same policy the ".c" files already
follow: don't use <subsystem/...h> syntax for private interfaces.
If we ever get reviewed/supported "public" interfaces they should
come exclusively from some include/... directory; that'll be the
time to switch to <...> syntax for any subsystem's own interfaces.
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Diffstat (limited to 'src/target/mips32_dmaacc.h')
-rw-r--r-- | src/target/mips32_dmaacc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/mips32_dmaacc.h b/src/target/mips32_dmaacc.h index e614c12..c1aa07d 100644 --- a/src/target/mips32_dmaacc.h +++ b/src/target/mips32_dmaacc.h @@ -25,7 +25,7 @@ #ifndef MIPS32_DMAACC_H #define MIPS32_DMAACC_H -#include <target/mips_ejtag.h> +#include "mips_ejtag.h" #define EJTAG_CTRL_DMA_BYTE 0x00000000 #define EJTAG_CTRL_DMA_HALFWORD 0x00000080 |