mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-05-04 12:21:03 +02:00
TARGET namespace is for machines / boards / what-have-you that building U-Boot for. Simply replace from TARGET to ARCH make things more clear and proper for ALL SoCFPGA. Signed-off-by: Brian Sune <briansune@gmail.com> Reviewed-by: Tien Fong Chee <tien.fong.chee@altera.com> # Conflicts: # drivers/ddr/altera/Makefile
12 lines
393 B
Makefile
12 lines
393 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (C) 2018-2021 Marek Vasut <marex@denx.de>
|
|
#
|
|
|
|
obj-$(CONFIG_ARCH_SOCFPGA_AGILEX) += clk-agilex.o
|
|
obj-$(CONFIG_ARCH_SOCFPGA_AGILEX7M) += clk-agilex.o
|
|
obj-$(CONFIG_ARCH_SOCFPGA_ARRIA10) += clk-arria10.o
|
|
obj-$(CONFIG_ARCH_SOCFPGA_N5X) += clk-n5x.o
|
|
obj-$(CONFIG_ARCH_SOCFPGA_N5X) += clk-mem-n5x.o
|
|
obj-$(CONFIG_ARCH_SOCFPGA_AGILEX5) += clk-agilex5.o
|