0a37198183
Create a SPI NOR manufacturer driver for ISSI chips, and move the ISSI definitions outside of core.c. Signed-off-by: Boris Brezillon <bbrezillon@kernel.org> Signed-off-by: Tudor Ambarus <tudor.ambarus@microchip.com>
13 lines
321 B
Makefile
13 lines
321 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
spi-nor-objs := core.o sfdp.o
|
|
spi-nor-objs += atmel.o
|
|
spi-nor-objs += eon.o
|
|
spi-nor-objs += esmt.o
|
|
spi-nor-objs += everspin.o
|
|
spi-nor-objs += fujitsu.o
|
|
spi-nor-objs += gigadevice.o
|
|
spi-nor-objs += intel.o
|
|
spi-nor-objs += issi.o
|
|
obj-$(CONFIG_MTD_SPI_NOR) += spi-nor.o
|