change #include "arm_nandio.h" to <flash/arm_nandio.h>
authorZachary T Welch <zw@superlucidity.net>
Thu, 3 Dec 2009 12:14:54 +0000 (04:14 -0800)
committerZachary T Welch <zw@superlucidity.net>
Thu, 3 Dec 2009 12:24:42 +0000 (04:24 -0800)
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.

src/flash/nand/davinci.c
src/flash/nand/orion.c

index 72cd378a4da7fbd1b9bf331d77bc923a4a586d0c..40be36d46e5ce8f05dc8472a8d66c28d881544da 100644 (file)
@@ -28,7 +28,7 @@
 #include "config.h"
 #endif
 
-#include "arm_nandio.h"
+#include <flash/arm_nandio.h>
 
 
 enum ecc {
index 0f08fe42bec73156cedf58c41fbbfcb9bdc41308..436151fbaa973943ece267e058cfdbefdee64a1e 100644 (file)
@@ -26,7 +26,7 @@
 #include "config.h"
 #endif
 
-#include "arm_nandio.h"
+#include <flash/arm_nandio.h>
 #include <target/armv4_5.h>