mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-12-18 16:01:32 +01:00
There is no single platform which is using this driver that's why remove it completely. Some issues regarding this code are also reported by Coverity (CID 583143, 583144, 583145, 583146). Signed-off-by: Michal Simek <michal.simek@amd.com> Link: https://lore.kernel.org/r/367cd55ab8d9fb262ac23fe748babc6b2b59bee0.1753686468.git.michal.simek@amd.com
27 lines
878 B
Makefile
27 lines
878 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2008
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
obj-y += fpga.o
|
|
obj-$(CONFIG_DM_FPGA) += fpga-uclass.o
|
|
obj-$(CONFIG_SANDBOX_FPGA) += sandbox.o
|
|
|
|
obj-$(CONFIG_FPGA_SPARTAN2) += spartan2.o
|
|
obj-$(CONFIG_FPGA_SPARTAN3) += spartan3.o
|
|
obj-$(CONFIG_FPGA_VERSALPL) += versalpl.o
|
|
obj-$(CONFIG_FPGA_VIRTEX2) += virtex2.o
|
|
obj-$(CONFIG_FPGA_ZYNQPL) += zynqpl.o
|
|
obj-$(CONFIG_FPGA_ZYNQMPPL) += zynqmppl.o
|
|
obj-$(CONFIG_FPGA_XILINX) += xilinx.o
|
|
ifdef CONFIG_FPGA_ALTERA
|
|
obj-y += altera.o
|
|
obj-$(CONFIG_FPGA_CYCLON2) += cyclon2.o
|
|
obj-$(CONFIG_FPGA_INTEL_SDM_MAILBOX) += intel_sdm_mb.o
|
|
obj-$(CONFIG_FPGA_STRATIX_II) += stratixII.o
|
|
obj-$(CONFIG_FPGA_STRATIX_V) += stratixv.o
|
|
obj-$(CONFIG_FPGA_SOCFPGA) += socfpga.o
|
|
obj-$(CONFIG_TARGET_SOCFPGA_GEN5) += socfpga_gen5.o
|
|
obj-$(CONFIG_TARGET_SOCFPGA_ARRIA10) += socfpga_arria10.o
|
|
endif
|