Browse Source

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

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

	#include "arm7_9_common.h"

the following form should be used.

	#include <target/arm7_9_common.h>

The exception is from .c files in the same directory.
tags/v0.4.0-rc1
Zachary T Welch 14 years ago
parent
commit
9e3136a5f8
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      src/flash/nor/str9xpec.c
  2. +1
    -1
      src/target/embeddedice.h

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

@@ -25,7 +25,7 @@
#endif

#include "str9xpec.h"
#include "arm7_9_common.h"
#include <target/arm7_9_common.h>


static int str9xpec_erase_area(struct flash_bank *bank, int first, int last);


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

@@ -26,7 +26,7 @@
#ifndef EMBEDDED_ICE_H
#define EMBEDDED_ICE_H

#include "arm7_9_common.h"
#include <target/arm7_9_common.h>

enum
{


Loading…
Cancel
Save