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.
This commit is contained in:
Zachary T Welch 2009-12-03 04:14:54 -08:00
parent 7a4f4457e5
commit eac262e5d2
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@
#include "config.h"
#endif
#include "arm_nandio.h"
#include <flash/arm_nandio.h>
enum ecc {

View File

@ -26,7 +26,7 @@
#include "config.h"
#endif
#include "arm_nandio.h"
#include <flash/arm_nandio.h>
#include <target/armv4_5.h>