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:
parent
7a4f4457e5
commit
eac262e5d2
|
@ -28,7 +28,7 @@
|
|||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "arm_nandio.h"
|
||||
#include <flash/arm_nandio.h>
|
||||
|
||||
|
||||
enum ecc {
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#include "config.h"
|
||||
#endif
|
||||
|
||||
#include "arm_nandio.h"
|
||||
#include <flash/arm_nandio.h>
|
||||
#include <target/armv4_5.h>
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue