mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-18 10:54:37 +00:00

Since required drivers were merged, we can safely clean up the board and switch to DM based driver with device tree support. Signed-off-by: Svyatoslav Ryhel <clamor95@gmail.com>
14 lines
322 B
Makefile
14 lines
322 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2010-2012
|
|
# NVIDIA Corporation <www.nvidia.com>
|
|
#
|
|
# (C) Copyright 2021
|
|
# Svyatoslav Ryhel <clamor95@gmail.com>
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-$(CONFIG_DM_PMIC_MAX77663) += grouper-spl-max.o
|
|
obj-$(CONFIG_DM_PMIC_TPS65910) += grouper-spl-ti.o
|
|
endif
|
|
|
|
obj-y += grouper.o
|