change #include "embeddedice.h" to <target/embeddedice.h>

Changes from the flat namespace to heirarchical one.  Instead of writing:

	#include "embeddedice.h"

the following form should be used.

	#include <target/embeddedice.h>

The exception is from .c files in the same directory.
This commit is contained in:
Zachary T Welch
2009-12-03 04:14:45 -08:00
parent 26e4fac57e
commit 1650ab3a22
6 changed files with 6 additions and 6 deletions

View File

@@ -23,7 +23,7 @@
#ifndef ARM7TDMI_H
#define ARM7TDMI_H
#include "embeddedice.h"
#include <target/embeddedice.h>
int arm7tdmi_init_arch_info(struct target *target,
struct arm7_9_common *arm7_9, struct jtag_tap *tap);