mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-19 03:08:31 +00:00
453c5a927c
Since this driver can be used for rk8xx series pmic, let's rename rk808 to rk8xx, to make it clear. Configs parts are done by sed -i "s/RK808/RK8XX/g" `grep RK808 -lr ./` Signed-off-by: Jacob Chen <jacob-chen@iotwrt.com>
38 lines
1.4 KiB
Makefile
38 lines
1.4 KiB
Makefile
#
|
|
# Copyright (C) 2012 Samsung Electronics
|
|
# Lukasz Majewski <l.majewski@samsung.com>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-$(CONFIG_DM_PMIC) += pmic-uclass.o
|
|
obj-$(CONFIG_DM_PMIC_MAX77686) += max77686.o
|
|
obj-$(CONFIG_DM_PMIC_MAX8998) += max8998.o
|
|
obj-$(CONFIG_DM_PMIC_PFUZE100) += pfuze100.o
|
|
obj-$(CONFIG_PMIC_S2MPS11) += s2mps11.o
|
|
obj-$(CONFIG_DM_PMIC_SANDBOX) += sandbox.o i2c_pmic_emul.o
|
|
obj-$(CONFIG_PMIC_ACT8846) += act8846.o
|
|
obj-$(CONFIG_PMIC_AS3722) += as3722.o
|
|
obj-$(CONFIG_PMIC_MAX8997) += max8997.o
|
|
obj-$(CONFIG_PMIC_PM8916) += pm8916.o
|
|
obj-$(CONFIG_PMIC_RK8XX) += rk8xx.o
|
|
obj-$(CONFIG_PMIC_RN5T567) += rn5t567.o
|
|
obj-$(CONFIG_PMIC_TPS65090) += tps65090.o
|
|
obj-$(CONFIG_PMIC_S5M8767) += s5m8767.o
|
|
obj-$(CONFIG_$(SPL_)PMIC_PALMAS) += palmas.o
|
|
obj-$(CONFIG_$(SPL_)PMIC_LP873X) += lp873x.o
|
|
|
|
obj-$(CONFIG_POWER_LTC3676) += pmic_ltc3676.o
|
|
obj-$(CONFIG_POWER_MAX77696) += pmic_max77696.o
|
|
obj-$(CONFIG_POWER_MAX8998) += pmic_max8998.o
|
|
obj-$(CONFIG_POWER_MAX8997) += pmic_max8997.o
|
|
obj-$(CONFIG_POWER_MUIC_MAX8997) += muic_max8997.o
|
|
obj-$(CONFIG_POWER_MAX77686) += pmic_max77686.o
|
|
obj-$(CONFIG_POWER_PFUZE100) += pmic_pfuze100.o
|
|
obj-$(CONFIG_POWER_PFUZE3000) += pmic_pfuze3000.o
|
|
obj-$(CONFIG_POWER_TPS65217) += pmic_tps65217.o
|
|
obj-$(CONFIG_POWER_TPS65218) += pmic_tps62362.o
|
|
obj-$(CONFIG_POWER_TPS65218) += pmic_tps65218.o
|
|
obj-$(CONFIG_POWER_TPS65910) += pmic_tps65910.o
|
|
obj-$(CONFIG_POWER_HI6553) += pmic_hi6553.o
|
|
obj-$(CONFIG_POWER_MC34VR500) += pmic_mc34vr500.o
|