diff options
author | wdenk <wdenk> | 2004-07-10 21:45:47 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-07-10 21:45:47 +0000 |
commit | 8b07a1103dc7dcadc80c4a9681cfa7d225e8e224 (patch) | |
tree | 8017b2826d62ec6d8289b8f1170627dc5c21ffcf /common/cmd_nand.c | |
parent | 0ac6f8b7498d3608bd1de2280a014e9e23d7b1f2 (diff) |
* Patch by Fred Klatt, 25 Jun 2004:
Add support for WindRiver's SBC8560 board
* Patch by Nicolas Lacressonniere, 24 Jun 2004
Small Bugs fixes for "at91rm9200dk" board:
- Timing modifications for SPI DataFlash access
- Fix NAND flash detection bug
* Patch by Nicolas Lacressonniere, 24 Jun 2004:
Add Support for Flash AT49BV6416 for AT91RM9200DK board
Diffstat (limited to 'common/cmd_nand.c')
-rw-r--r-- | common/cmd_nand.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/common/cmd_nand.c b/common/cmd_nand.c index 8d115eb2672..c874e7c570f 100644 --- a/common/cmd_nand.c +++ b/common/cmd_nand.c @@ -20,6 +20,10 @@ #if (CONFIG_COMMANDS & CFG_CMD_NAND) +#ifdef CONFIG_AT91RM9200DK +#include <asm/arch/hardware.h> +#endif + #include <linux/mtd/nand.h> #include <linux/mtd/nand_ids.h> #include <jffs2/jffs2.h> |