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.__archive__
parent
9cbab8d3a6
commit
450ceda9ae
|
@ -27,7 +27,7 @@
|
||||||
#include <helper/configuration.h>
|
#include <helper/configuration.h>
|
||||||
#include "xsvf.h"
|
#include "xsvf.h"
|
||||||
#include "svf.h"
|
#include "svf.h"
|
||||||
#include "nand.h"
|
#include <flash/nand.h>
|
||||||
#include "pld.h"
|
#include "pld.h"
|
||||||
|
|
||||||
#include "server.h"
|
#include "server.h"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#ifndef __ARM_NANDIO_H
|
#ifndef __ARM_NANDIO_H
|
||||||
#define __ARM_NANDIO_H
|
#define __ARM_NANDIO_H
|
||||||
|
|
||||||
#include "nand.h"
|
#include <flash/nand.h>
|
||||||
#include <helper/binarybuffer.h>
|
#include <helper/binarybuffer.h>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "lpc3180.h"
|
#include "lpc3180.h"
|
||||||
#include "nand.h"
|
#include <flash/nand.h>
|
||||||
|
|
||||||
static int lpc3180_reset(struct nand_device *nand);
|
static int lpc3180_reset(struct nand_device *nand);
|
||||||
static int lpc3180_controller_ready(struct nand_device *nand, int timeout);
|
static int lpc3180_controller_ready(struct nand_device *nand, int timeout);
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
*
|
*
|
||||||
* Many thanks to Ben Dooks for writing s3c24xx driver.
|
* Many thanks to Ben Dooks for writing s3c24xx driver.
|
||||||
*/
|
*/
|
||||||
#include "nand.h"
|
#include <flash/nand.h>
|
||||||
|
|
||||||
#define MX3_NF_BASE_ADDR 0xb8000000
|
#define MX3_NF_BASE_ADDR 0xb8000000
|
||||||
#define MX3_NF_BUFSIZ (MX3_NF_BASE_ADDR + 0xe00)
|
#define MX3_NF_BUFSIZ (MX3_NF_BASE_ADDR + 0xe00)
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
#ifdef HAVE_CONFIG_H
|
#ifdef HAVE_CONFIG_H
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#endif
|
#endif
|
||||||
#include "nand.h"
|
#include <flash/nand.h>
|
||||||
|
|
||||||
|
|
||||||
static int nonce_nand_command(struct nand_device *nand, uint8_t command)
|
static int nonce_nand_command(struct nand_device *nand, uint8_t command)
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
* Many thanks to Simtec Electronics for sponsoring this work.
|
* Many thanks to Simtec Electronics for sponsoring this work.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "nand.h"
|
#include <flash/nand.h>
|
||||||
#include "s3c24xx_regs.h"
|
#include "s3c24xx_regs.h"
|
||||||
|
|
||||||
struct s3c24xx_nand_controller
|
struct s3c24xx_nand_controller
|
||||||
|
|
|
@ -34,7 +34,7 @@
|
||||||
#include <helper/configuration.h>
|
#include <helper/configuration.h>
|
||||||
#include "xsvf.h"
|
#include "xsvf.h"
|
||||||
#include "svf.h"
|
#include "svf.h"
|
||||||
#include "nand.h"
|
#include <flash/nand.h>
|
||||||
#include "pld.h"
|
#include "pld.h"
|
||||||
#include <flash/mflash.h>
|
#include <flash/mflash.h>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue