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

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

	#include "flash.h"

the following form should be used.

	#include <flash/flash.h>

The exception is from .c files in the same directory.
This commit is contained in:
Zachary T Welch
2009-12-03 04:14:54 -08:00
parent eac262e5d2
commit 2b2d5ec1e3
21 changed files with 21 additions and 21 deletions

View File

@@ -20,7 +20,7 @@
#ifndef CFI_H
#define CFI_H
#include "flash.h"
#include <flash/flash.h>
#define CFI_STATUS_POLL_MASK_DQ5_DQ6_DQ7 0xE0 /* DQ5..DQ7 */
#define CFI_STATUS_POLL_MASK_DQ6_DQ7 0xC0 /* DQ6..DQ7 */