Make the LPC32xx nand driver support up to 5 address cycles. This will only work in the SLC driver.

This commit is contained in:
Alexandre Pereira da Silva 2011-04-12 13:06:13 -03:00 committed by Øyvind Harboe
parent 2ed19d3b9b
commit e105915a4a
1 changed files with 1 additions and 1 deletions

View File

@ -214,7 +214,7 @@ static int lpc32xx_init(struct nand_device *nand)
/* inform calling code about selected bus width */
nand->bus_width = bus_width;
if ((address_cycles != 3) && (address_cycles != 4)) {
if ((address_cycles < 3) || (address_cycles > 5)) {
LOG_ERROR("LPC32xx driver doesn't support %i address cycles", address_cycles);
return ERROR_NAND_OPERATION_NOT_SUPPORTED;
}