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

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

	#include "mflash.h"

the following form should be used.

	#include <flash/mflash.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 2b2d5ec1e3
commit 9cbab8d3a6
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@
#include "svf.h"
#include "nand.h"
#include "pld.h"
#include "mflash.h"
#include <flash/mflash.h>
#include "server.h"
#include "gdb_server.h"