mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-21 15:00:42 +07:00
2098c56470
Commita0900d0195
("mtd: spi-nor: Prepare core / manufacturer code split") moved various files into a new directory, but did not add the new directory to its parent directory Makefile. The moved files no longer build, and affected flash chips no longer instantiate. Adding the new directory to the parent directory Makefile fixes the problem. Fixes:a0900d0195
("mtd: spi-nor: Prepare core / manufacturer code split") Cc: Boris Brezillon <bbrezillon@kernel.org> Cc: Tudor Ambarus <tudor.ambarus@microchip.com> Signed-off-by: Guenter Roeck <linux@roeck-us.net> Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com> Acked-by: Joel Stanley <joel@jms.id.au> Reviewed-by: Tudor Ambarus <tudor.ambarus@microchip.com> Signed-off-by: Richard Weinberger <richard@nod.at>
23 lines
584 B
Makefile
23 lines
584 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
spi-nor-objs := core.o sfdp.o
|
|
spi-nor-objs += atmel.o
|
|
spi-nor-objs += catalyst.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
|
|
spi-nor-objs += macronix.o
|
|
spi-nor-objs += micron-st.o
|
|
spi-nor-objs += spansion.o
|
|
spi-nor-objs += sst.o
|
|
spi-nor-objs += winbond.o
|
|
spi-nor-objs += xilinx.o
|
|
spi-nor-objs += xmc.o
|
|
obj-$(CONFIG_MTD_SPI_NOR) += spi-nor.o
|
|
|
|
obj-$(CONFIG_MTD_SPI_NOR) += controllers/
|