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:
parent
5a94612148
commit
7a4f4457e5
|
@ -23,7 +23,7 @@
|
|||
#ifndef ETM_H
|
||||
#define ETM_H
|
||||
|
||||
#include "trace.h"
|
||||
#include <target/trace.h>
|
||||
#include <target/arm_jtag.h>
|
||||
|
||||
struct image;
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
|
||||
#include <target/armv4_5.h>
|
||||
#include <target/armv4_5_mmu.h>
|
||||
#include "trace.h"
|
||||
#include <target/trace.h>
|
||||
|
||||
#define XSCALE_COMMON_MAGIC 0x58534341
|
||||
|
||||
|
|
Loading…
Reference in New Issue