diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:14:55 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-12-03 04:24:42 -0800 |
commit | 450ceda9aec12a0b67cca8dfbaf0384824cbd6c2 (patch) | |
tree | cbfaa0b50097a98fc303180b1ff1953bf05b80d4 /src/flash/nand/lpc3180.c | |
parent | 9cbab8d3a6b6157629b75457b79e1b828c78bf6e (diff) | |
download | openocd+libswd-450ceda9aec12a0b67cca8dfbaf0384824cbd6c2.tar.gz openocd+libswd-450ceda9aec12a0b67cca8dfbaf0384824cbd6c2.tar.bz2 openocd+libswd-450ceda9aec12a0b67cca8dfbaf0384824cbd6c2.tar.xz openocd+libswd-450ceda9aec12a0b67cca8dfbaf0384824cbd6c2.zip |
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.
Diffstat (limited to 'src/flash/nand/lpc3180.c')
-rw-r--r-- | src/flash/nand/lpc3180.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flash/nand/lpc3180.c b/src/flash/nand/lpc3180.c index 031e6b1d..80284cc6 100644 --- a/src/flash/nand/lpc3180.c +++ b/src/flash/nand/lpc3180.c @@ -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); |