mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 12:45:42 +00:00
1680d7b6de
A fair amount of the XUSB padctl driver will be common between Tegra124 and Tegra210. To avoid cut/paste between the two chips, create a new file that will contain the common code, and convert the Tegra124 code to use it. This change doesn't move every last piece of code that can/will be shared, but rather concentrates on moving code that can be moved with zero changes, so there are no other diffs mixed in. Signed-off-by: Stephen Warren <swarren@nvidia.com> Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Tom Warren <twarren@nvidia.com>
18 lines
323 B
Makefile
18 lines
323 B
Makefile
#
|
|
# (C) Copyright 2013-2014
|
|
# NVIDIA Corporation <www.nvidia.com>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-$(CONFIG_SPL_BUILD) += cpu.o
|
|
|
|
obj-y += clock.o
|
|
obj-y += funcmux.o
|
|
obj-y += pinmux.o
|
|
obj-y += xusb-padctl.o
|
|
obj-y += ../xusb-padctl-common.o
|
|
|
|
ifndef CONFIG_SPL_BUILD
|
|
obj-$(CONFIG_ARMV7_NONSEC) += psci.o
|
|
endif
|