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

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

	#include "nand.h"

the following form should be used.

	#include <flash/nand.h>

The exception is from .c files in the same directory.
This commit is contained in:
Zachary T Welch
2009-12-03 04:14:55 -08:00
parent 9cbab8d3a6
commit 450ceda9ae
7 changed files with 7 additions and 7 deletions

View File

@@ -22,7 +22,7 @@
#endif
#include "lpc3180.h"
#include "nand.h"
#include <flash/nand.h>
static int lpc3180_reset(struct nand_device *nand);
static int lpc3180_controller_ready(struct nand_device *nand, int timeout);