Re: [PATCH v1 01/12] nand: move NAND initialization API to nand/core.c

2023-12-28 Thread Sean Anderson
On 12/28/23 10:39, Alexey Romanov wrote: > nand_register() and nand_init() is generic API for both > RAW and SPI NAND's. We have to move this functions > from drivers/mtd/nand/raw/nand.c to drivers/mtd/nand/core.c. > > Functions designed to work with RAW NAND should remain > in drivers/mtd/nand/ra

[PATCH v1 01/12] nand: move NAND initialization API to nand/core.c

2023-12-28 Thread Alexey Romanov
nand_register() and nand_init() is generic API for both RAW and SPI NAND's. We have to move this functions from drivers/mtd/nand/raw/nand.c to drivers/mtd/nand/core.c. Functions designed to work with RAW NAND should remain in drivers/mtd/nand/raw/nand.c. Signed-off-by: Alexey Romanov --- driver