Browse Source

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.
tags/v0.4.0-rc1
Zachary T Welch 14 years ago
parent
commit
1650ab3a22
6 changed files with 6 additions and 6 deletions
  1. +1
    -1
      src/flash/nor/ecos.c
  2. +1
    -1
      src/flash/nor/ocl.c
  3. +1
    -1
      src/jtag/minidummy/minidummy.c
  4. +1
    -1
      src/jtag/zy1000/zy1000.c
  5. +1
    -1
      src/target/arm7tdmi.h
  6. +1
    -1
      src/target/arm9tdmi.h

+ 1
- 1
src/flash/nor/ecos.c View File

@@ -22,7 +22,7 @@
#endif

#include "flash.h"
#include "embeddedice.h"
#include <target/embeddedice.h>
#include "image.h"
#include <target/algorithm.h>



+ 1
- 1
src/flash/nor/ocl.c View File

@@ -23,7 +23,7 @@

#include "ocl.h"
#include "flash.h"
#include "embeddedice.h"
#include <target/embeddedice.h>


struct ocl_priv


+ 1
- 1
src/jtag/minidummy/minidummy.c View File

@@ -20,7 +20,7 @@
#include "config.h"
#endif

#include "embeddedice.h"
#include <target/embeddedice.h>
#include <jtag/minidriver.h>
#include <jtag/interface.h>



+ 1
- 1
src/jtag/zy1000/zy1000.c View File

@@ -20,7 +20,7 @@
#include "config.h"
#endif

#include "embeddedice.h"
#include <target/embeddedice.h>
#include <jtag/minidriver.h>
#include <jtag/interface.h>
#include "zy1000_version.h"


+ 1
- 1
src/target/arm7tdmi.h 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);


+ 1
- 1
src/target/arm9tdmi.h View File

@@ -23,7 +23,7 @@
#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);


Loading…
Cancel
Save