diff options
| author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2009-03-22 10:22:34 +0100 | 
|---|---|---|
| committer | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2009-03-22 13:22:24 +0100 | 
| commit | 74c076d6c33d6d42ab065541a38383587879e7b7 (patch) | |
| tree | b44a890cf87711cb3325e4615f281deb758af133 /board/atmel/at91sam9263ek/at91sam9263ek.c | |
| parent | 163966087d62680547f188a93c61d01c8155254e (diff) | |
| download | olio-uboot-2014.01-74c076d6c33d6d42ab065541a38383587879e7b7.tar.xz olio-uboot-2014.01-74c076d6c33d6d42ab065541a38383587879e7b7.zip | |
at91sam9/at91cap: move nand drivers to drivers/mtd/nand
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'board/atmel/at91sam9263ek/at91sam9263ek.c')
| -rw-r--r-- | board/atmel/at91sam9263ek/at91sam9263ek.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/board/atmel/at91sam9263ek/at91sam9263ek.c b/board/atmel/at91sam9263ek/at91sam9263ek.c index 9110e9e6a..1d5284592 100644 --- a/board/atmel/at91sam9263ek/at91sam9263ek.c +++ b/board/atmel/at91sam9263ek/at91sam9263ek.c @@ -80,10 +80,10 @@ static void at91sam9263ek_nand_hw_init(void)  				      1 << AT91SAM9263_ID_PIOCDE);  	/* Configure RDY/BSY */ -	at91_set_gpio_input(AT91_PIN_PA22, 1); +	at91_set_gpio_input(CONFIG_SYS_NAND_READY_PIN, 1);  	/* Enable NandFlash */ -	at91_set_gpio_output(AT91_PIN_PD15, 1); +	at91_set_gpio_output(CONFIG_SYS_NAND_ENABLE_PIN, 1);  }  #endif |