diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:14:46 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:24:41 -0800 |
commit | 0241b1e1054e7d3d187c0a41c7ffefab321b6b67 (patch) | |
tree | a01e3e7c84d1639f33e5b99edc9e9280d0440dd5 | |
parent | 1650ab3a22d62c834126138f253643031c8418ba (diff) | |
download | openocd+libswd-0241b1e1054e7d3d187c0a41c7ffefab321b6b67.tar.gz openocd+libswd-0241b1e1054e7d3d187c0a41c7ffefab321b6b67.tar.bz2 openocd+libswd-0241b1e1054e7d3d187c0a41c7ffefab321b6b67.tar.xz openocd+libswd-0241b1e1054e7d3d187c0a41c7ffefab321b6b67.zip |
change #include "etm.h" to <target/etm.h>
Changes from the flat namespace to heirarchical one. Instead of writing:
#include "etm.h"
the following form should be used.
#include <target/etm.h>
The exception is from .c files in the same directory.
-rw-r--r-- | src/target/etm_dummy.h | 2 | ||||
-rw-r--r-- | src/target/oocd_trace.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/target/etm_dummy.h b/src/target/etm_dummy.h index 2673e4f5..95980f84 100644 --- a/src/target/etm_dummy.h +++ b/src/target/etm_dummy.h @@ -20,7 +20,7 @@ #ifndef ETM_DUMMY_H #define ETM_DUMMY_H -#include "etm.h" +#include <target/etm.h> extern struct etm_capture_driver etm_dummy_capture_driver; diff --git a/src/target/oocd_trace.h b/src/target/oocd_trace.h index 8234b659..7c334f24 100644 --- a/src/target/oocd_trace.h +++ b/src/target/oocd_trace.h @@ -20,7 +20,7 @@ #ifndef OOCD_TRACE_H #define OOCD_TRACE_H -#include "etm.h" +#include <target/etm.h> #include <termios.h> |