Make the LPC32xx nand driver support up to 5 address cycles. This will only work in the SLC driver.
This commit is contained in:
parent
2ed19d3b9b
commit
e105915a4a
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue