Re: [U-Boot] [PATCH 3/9] nand driver support for SPEAr SoCs

2010-01-04 Thread Vipin KUMAR
Hello Scott, > > Acked-by: Scott Wood > > Some of the whitespace is a bit inconsistent, though: > > > +int spear_nand_init(struct nand_chip *nand) > > +{ > > + writel(FSMC_DEVWID_8 | FSMC_DEVTYPE_NAND | FSMC_ENABLE | > FSMC_WAITON, > > + &fsmc_regs_p->genmemctrl_pc); > > +

Re: [U-Boot] [PATCH 3/9] nand driver support for SPEAr SoCs

2010-01-04 Thread Scott Wood
On Wed, Dec 16, 2009 at 02:48:24PM +0530, Vipin KUMAR wrote: > > Signed-off-by: Vipin Acked-by: Scott Wood Some of the whitespace is a bit inconsistent, though: > +int spear_nand_init(struct nand_chip *nand) > +{ > + writel(FSMC_DEVWID_8 | FSMC_DEVTYPE_NAND | FSMC_ENABLE | FSMC_WAITON, >

[U-Boot] [PATCH 3/9] nand driver support for SPEAr SoCs

2009-12-16 Thread Vipin KUMAR
Signed-off-by: Vipin --- drivers/mtd/nand/Makefile |1 + drivers/mtd/nand/spr_nand.c | 126 + include/asm-arm/arch-spear/spr_nand.h | 58 +++ 3 files changed, 185 insertions(+), 0 deletions(-) create mode 100755 drivers/mt