summaryrefslogtreecommitdiff
path: root/src/flash/nand/nonce.c
Commit message (Collapse)AuthorAgeFilesLines
* change #include "../hello.h" to "hello.h"Zachary T Welch2009-12-031-0/+2
| | | | | | Before we can -I the top-level src/ directory alone, references to "hello.h" must be updated. This is an internal header, so it does not need angle brackets.
* change #include "nand.h" to <flash/nand.h>Zachary T Welch2009-12-031-1/+1
| | | | | | | | | | | | 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.
* move nand drivers to src/flash/nand/Zachary T Welch2009-12-021-0/+80
Moves NAND drivers to src/flash/nand/. Adds src/flash/nand/Makefile.am. Builds libocdflashnand.la.