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.
#endif
#include "flash.h"
-#include "embeddedice.h"
+#include <target/embeddedice.h>
#include "image.h"
#include <target/algorithm.h>
#include "ocl.h"
#include "flash.h"
-#include "embeddedice.h"
+#include <target/embeddedice.h>
struct ocl_priv
#include "config.h"
#endif
-#include "embeddedice.h"
+#include <target/embeddedice.h>
#include <jtag/minidriver.h>
#include <jtag/interface.h>
#include "config.h"
#endif
-#include "embeddedice.h"
+#include <target/embeddedice.h>
#include <jtag/minidriver.h>
#include <jtag/interface.h>
#include "zy1000_version.h"
#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);
#ifndef ARM9TDMI_H
#define ARM9TDMI_H
-#include "embeddedice.h"
+#include <target/embeddedice.h>
int arm9tdmi_init_target(struct command_context *cmd_ctx,
struct target *target);