Skip to content
Snippets Groups Projects
Commit c1ee63ce authored by Sandeep Paulraj's avatar Sandeep Paulraj Committed by Tom Rix
Browse files

TI DaVinci DM646x: Enable NAND on DM6467 EVM


This patch enables NAND on the DM6467 EVM

Signed-off-by: default avatarSandeep Paulraj <s-paulraj@ti.com>
parent d414aae5
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,8 @@
#include <common.h>
#include <asm/io.h>
#include <nand.h>
#include <asm/arch/nand_defs.h>
DECLARE_GLOBAL_DATA_PTR;
......@@ -28,3 +30,12 @@ int board_init(void)
return 0;
}
#ifdef CONFIG_NAND_DAVINCI
int board_nand_init(struct nand_chip *nand)
{
davinci_nand_init(nand);
return 0;
}
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment