diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:14:52 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:24:42 -0800 |
commit | 7a4f4457e5713eab8537a723ed10474287377225 (patch) | |
tree | 0ecd2a97d85b2cb84c12e0225c674cc5b1069a35 /src/target/etm.h | |
parent | 5a94612148940db460252f2ad68585d96ee71415 (diff) | |
download | riscv-openocd-7a4f4457e5713eab8537a723ed10474287377225.zip riscv-openocd-7a4f4457e5713eab8537a723ed10474287377225.tar.gz riscv-openocd-7a4f4457e5713eab8537a723ed10474287377225.tar.bz2 |
change #include "trace.h" to <target/trace.h>
Changes from the flat namespace to heirarchical one. Instead of writing:
#include "trace.h"
the following form should be used.
#include <target/trace.h>
The exception is from .c files in the same directory.
Diffstat (limited to 'src/target/etm.h')
-rw-r--r-- | src/target/etm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/etm.h b/src/target/etm.h index 60e4ea7..656e04b 100644 --- a/src/target/etm.h +++ b/src/target/etm.h @@ -23,7 +23,7 @@ #ifndef ETM_H #define ETM_H -#include "trace.h" +#include <target/trace.h> #include <target/arm_jtag.h> struct image; |