mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-16 09:48:16 +00:00
9119820b6b
Add a full regulator driver for the ACT8846. This provides easy access to voltage and current settings for each regulator. Signed-off-by: Simon Glass <sjg@chromium.org>
15 lines
521 B
Makefile
15 lines
521 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_REGULATOR_ACT8846) += act8846.o
|
|
obj-$(CONFIG_DM_REGULATOR_MAX77686) += max77686.o
|
|
obj-$(CONFIG_DM_REGULATOR_PFUZE100) += pfuze100.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
|