mirror of
https://github.com/smaeul/u-boot.git
synced 2025-09-15 14:36:03 +01:00
Use the new symbol to refer to any 'SPL' build, including TPL and VPL Signed-off-by: Simon Glass <sjg@chromium.org>
17 lines
485 B
Makefile
17 lines
485 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
ifndef CONFIG_XPL_BUILD
|
|
ifdef CONFIG_TEGRA20
|
|
obj-y += pinctrl-tegra20.o
|
|
else
|
|
obj-y += pinctrl-tegra.o
|
|
endif
|
|
endif
|
|
|
|
obj-y += pinmux-common.o
|
|
|
|
obj-$(CONFIG_TEGRA20) += pinmux-tegra20.o funcmux-tegra20.o
|
|
obj-$(CONFIG_TEGRA30) += pinmux-tegra30.o funcmux-tegra30.o
|
|
obj-$(CONFIG_TEGRA114) += pinmux-tegra114.o funcmux-tegra114.o
|
|
obj-$(CONFIG_TEGRA124) += pinmux-tegra124.o funcmux-tegra124.o
|
|
obj-$(CONFIG_TEGRA210) += pinmux-tegra210.o funcmux-tegra210.o
|