Browse Source

change #include "arm_nandio.h" to <flash/arm_nandio.h>

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

	#include "arm_nandio.h"

the following form should be used.

	#include <flash/arm_nandio.h>

The exception is from .c files in the same directory.
tags/v0.4.0-rc1
Zachary T Welch 14 years ago
parent
commit
eac262e5d2
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      src/flash/nand/davinci.c
  2. +1
    -1
      src/flash/nand/orion.c

+ 1
- 1
src/flash/nand/davinci.c View File

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

#include "arm_nandio.h"
#include <flash/arm_nandio.h>


enum ecc {


+ 1
- 1
src/flash/nand/orion.c View File

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

#include "arm_nandio.h"
#include <flash/arm_nandio.h>
#include <target/armv4_5.h>




Loading…
Cancel
Save