mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-03 09:59:44 +00:00
f615e6a64d
This PMIC is used with SoCs which need a combination of BUCKs and LDOs. The driver supports changing voltage and enabling/disabling each regulator. It supports the standard device tree binding and supports driver model. Signed-off-by: Simon Glass <sjg@chromium.org> Acked-by: Przemyslaw Marczak <p.marczak@samsung.com>
13 lines
426 B
Makefile
13 lines
426 B
Makefile
#
|
|
# Copyright (C) 2015 Samsung Electronics
|
|
# Przemyslaw Marczak <p.marczak@samsung.com>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-$(CONFIG_DM_REGULATOR) += regulator-uclass.o
|
|
obj-$(CONFIG_DM_REGULATOR_MAX77686) += max77686.o
|
|
obj-$(CONFIG_DM_REGULATOR_FIXED) += fixed.o
|
|
obj-$(CONFIG_REGULATOR_S5M8767) += s5m8767.o
|
|
obj-$(CONFIG_DM_REGULATOR_SANDBOX) += sandbox.o
|
|
obj-$(CONFIG_REGULATOR_TPS65090) += tps65090_regulator.o
|