From: Zachary T Welch Date: Thu, 3 Dec 2009 12:14:46 +0000 (-0800) Subject: change #include "etm.h" to X-Git-Tag: v0.4.0-rc1~170 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=0241b1e1054e7d3d187c0a41c7ffefab321b6b67;p=openocd change #include "etm.h" to Changes from the flat namespace to heirarchical one. Instead of writing: #include "etm.h" the following form should be used. #include The exception is from .c files in the same directory. --- 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 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 #include