mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-18 10:48:51 +00:00
1f2b4b06ae
For some boards the pmic interface is useful but the regulator interface (which comes with it) is too large. Allow them to be separated such that SPL can decide which it needs. Signed-off-by: Simon Glass <sjg@chromium.org>
16 lines
576 B
Makefile
16 lines
576 B
Makefile
#
|
|
# Copyright (C) 2015 Samsung Electronics
|
|
# Przemyslaw Marczak <p.marczak@samsung.com>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-$(CONFIG_$(SPL_)DM_REGULATOR) += regulator-uclass.o
|
|
obj-$(CONFIG_REGULATOR_ACT8846) += act8846.o
|
|
obj-$(CONFIG_DM_REGULATOR_MAX77686) += max77686.o
|
|
obj-$(CONFIG_DM_REGULATOR_PFUZE100) += pfuze100.o
|
|
obj-$(CONFIG_$(SPL_)DM_REGULATOR_FIXED) += fixed.o
|
|
obj-$(CONFIG_REGULATOR_RK808) += rk808.o
|
|
obj-$(CONFIG_REGULATOR_S5M8767) += s5m8767.o
|
|
obj-$(CONFIG_DM_REGULATOR_SANDBOX) += sandbox.o
|
|
obj-$(CONFIG_REGULATOR_TPS65090) += tps65090_regulator.o
|