From 1650ab3a22d62c834126138f253643031c8418ba Mon Sep 17 00:00:00 2001 From: Zachary T Welch Date: Thu, 3 Dec 2009 04:14:45 -0800 Subject: change #include "embeddedice.h" to Changes from the flat namespace to heirarchical one. Instead of writing: #include "embeddedice.h" the following form should be used. #include The exception is from .c files in the same directory. --- src/flash/nor/ecos.c | 2 +- src/flash/nor/ocl.c | 2 +- src/jtag/minidummy/minidummy.c | 2 +- src/jtag/zy1000/zy1000.c | 2 +- src/target/arm7tdmi.h | 2 +- src/target/arm9tdmi.h | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/flash/nor/ecos.c b/src/flash/nor/ecos.c index f689e152..ca8f3f51 100644 --- a/src/flash/nor/ecos.c +++ b/src/flash/nor/ecos.c @@ -22,7 +22,7 @@ #endif #include "flash.h" -#include "embeddedice.h" +#include #include "image.h" #include diff --git a/src/flash/nor/ocl.c b/src/flash/nor/ocl.c index 388395f0..57d9efaa 100644 --- a/src/flash/nor/ocl.c +++ b/src/flash/nor/ocl.c @@ -23,7 +23,7 @@ #include "ocl.h" #include "flash.h" -#include "embeddedice.h" +#include struct ocl_priv diff --git a/src/jtag/minidummy/minidummy.c b/src/jtag/minidummy/minidummy.c index 8ada5793..e60e832e 100644 --- a/src/jtag/minidummy/minidummy.c +++ b/src/jtag/minidummy/minidummy.c @@ -20,7 +20,7 @@ #include "config.h" #endif -#include "embeddedice.h" +#include #include #include diff --git a/src/jtag/zy1000/zy1000.c b/src/jtag/zy1000/zy1000.c index ca70b2b2..5b6e4ea0 100644 --- a/src/jtag/zy1000/zy1000.c +++ b/src/jtag/zy1000/zy1000.c @@ -20,7 +20,7 @@ #include "config.h" #endif -#include "embeddedice.h" +#include #include #include #include "zy1000_version.h" diff --git a/src/target/arm7tdmi.h b/src/target/arm7tdmi.h index b6bbe59a..ce771e26 100644 --- a/src/target/arm7tdmi.h +++ b/src/target/arm7tdmi.h @@ -23,7 +23,7 @@ #ifndef ARM7TDMI_H #define ARM7TDMI_H -#include "embeddedice.h" +#include int arm7tdmi_init_arch_info(struct target *target, struct arm7_9_common *arm7_9, struct jtag_tap *tap); diff --git a/src/target/arm9tdmi.h b/src/target/arm9tdmi.h index aff9fc5f..ea436900 100644 --- a/src/target/arm9tdmi.h +++ b/src/target/arm9tdmi.h @@ -23,7 +23,7 @@ #ifndef ARM9TDMI_H #define ARM9TDMI_H -#include "embeddedice.h" +#include int arm9tdmi_init_target(struct command_context *cmd_ctx, struct target *target); -- cgit v1.2.3