mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 12:45:42 +00:00
1757df4693
This commit adds support to MAX77686 regulator driver, based on a driver model regulator's API. It implements almost all regulator operations, beside those for setting and geting the Current value. For proper bind and operation it requires the MAX77686 PMIC driver. New file: drivers/power/regulator/max77686.c New config: CONFIG_DM_REGULATOR_MAX77686 Signed-off-by: Przemyslaw Marczak <p.marczak@samsung.com> Acked-by: Simon Glass <sjg@chromium.org>
22 lines
728 B
Makefile
22 lines
728 B
Makefile
#
|
|
# Copyright (c) 2009 Wind River Systems, Inc.
|
|
# Tom Rix <Tom.Rix at windriver.com>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-$(CONFIG_AS3722_POWER) += as3722.o
|
|
obj-$(CONFIG_AXP152_POWER) += axp152.o
|
|
obj-$(CONFIG_AXP209_POWER) += axp209.o
|
|
obj-$(CONFIG_AXP221_POWER) += axp221.o
|
|
obj-$(CONFIG_EXYNOS_TMU) += exynos-tmu.o
|
|
obj-$(CONFIG_FTPMU010_POWER) += ftpmu010.o
|
|
obj-$(CONFIG_TPS6586X_POWER) += tps6586x.o
|
|
obj-$(CONFIG_TWL4030_POWER) += twl4030.o
|
|
obj-$(CONFIG_TWL6030_POWER) += twl6030.o
|
|
obj-$(CONFIG_PALMAS_POWER) += palmas.o
|
|
obj-$(CONFIG_POWER) += power_core.o
|
|
obj-$(CONFIG_DIALOG_POWER) += power_dialog.o
|
|
obj-$(CONFIG_POWER_FSL) += power_fsl.o
|
|
obj-$(CONFIG_POWER_I2C) += power_i2c.o
|
|
obj-$(CONFIG_POWER_SPI) += power_spi.o
|