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.
This commit is contained in:
Zachary T Welch
2009-12-03 04:14:52 -08:00
parent 5a94612148
commit 7a4f4457e5
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -23,7 +23,7 @@
#ifndef ETM_H
#define ETM_H
#include "trace.h"
#include <target/trace.h>
#include <target/arm_jtag.h>
struct image;