mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 13:03:25 +01:00
be1d1a7657
These flashes are kind of an oddball for the very old Xilinx Spartan 3 FPGAs to store their bitstream. More importantly, they reuse the Atmel JEDEC manufacturer ID and in fact the at45db081d already blocks the use of the 3S700AN flash chip. It's time to sunset support for these flashes. Signed-off-by: Michael Walle <mwalle@kernel.org> Acked-by: Tudor Ambarus <tudor.ambarus@linaro.org> Reviewed-by: Pratyush Yadav <pratyush@kernel.org> Cc: Ricardo Ribalda <ribalda@kernel.org> Acked-by: Ricardo Ribalda <ribalda@chromium.org> Signed-off-by: Pratyush Yadav <pratyush@kernel.org> Link: https://lore.kernel.org/r/20240419141249.609534-2-mwalle@kernel.org
20 lines
560 B
Makefile
20 lines
560 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
spi-nor-objs := core.o sfdp.o swp.o otp.o sysfs.o
|
|
spi-nor-objs += atmel.o
|
|
spi-nor-objs += eon.o
|
|
spi-nor-objs += esmt.o
|
|
spi-nor-objs += everspin.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 += xmc.o
|
|
spi-nor-$(CONFIG_DEBUG_FS) += debugfs.o
|
|
obj-$(CONFIG_MTD_SPI_NOR) += spi-nor.o
|
|
|
|
obj-$(CONFIG_MTD_SPI_NOR) += controllers/
|