893218a8e8
Create a SPI NOR manufacturer driver for Fujitsu chips, and move the Fujitsu definitions outside of core.c. Signed-off-by: Boris Brezillon <bbrezillon@kernel.org> Signed-off-by: Tudor Ambarus <tudor.ambarus@microchip.com>
10 lines
239 B
Makefile
10 lines
239 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
|
|
obj-$(CONFIG_MTD_SPI_NOR) += spi-nor.o
|