mirror of
https://github.com/torvalds/linux.git
synced 2024-11-05 03:21:32 +00:00
3db47dc0ae
This driver register pm_power_off with snvs power off function. If your boards NOT use PMIC_ON_REQ to turn on/off external pmic, or use other pin to do, please disable the driver in dts, otherwise, your pm_power_off maybe overwrote by this driver. Signed-off-by: Robin Gong <b38343@freescale.com> Acked-By: Sebastian Reichel <sre@kernel.org> Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
21 lines
1.0 KiB
Makefile
21 lines
1.0 KiB
Makefile
obj-$(CONFIG_POWER_RESET_AS3722) += as3722-poweroff.o
|
|
obj-$(CONFIG_POWER_RESET_AT91_POWEROFF) += at91-poweroff.o
|
|
obj-$(CONFIG_POWER_RESET_AT91_RESET) += at91-reset.o
|
|
obj-$(CONFIG_POWER_RESET_AXXIA) += axxia-reset.o
|
|
obj-$(CONFIG_POWER_RESET_BRCMSTB) += brcmstb-reboot.o
|
|
obj-$(CONFIG_POWER_RESET_GPIO) += gpio-poweroff.o
|
|
obj-$(CONFIG_POWER_RESET_GPIO_RESTART) += gpio-restart.o
|
|
obj-$(CONFIG_POWER_RESET_HISI) += hisi-reboot.o
|
|
obj-$(CONFIG_POWER_RESET_IMX) += imx-snvs-poweroff.o
|
|
obj-$(CONFIG_POWER_RESET_MSM) += msm-poweroff.o
|
|
obj-$(CONFIG_POWER_RESET_LTC2952) += ltc2952-poweroff.o
|
|
obj-$(CONFIG_POWER_RESET_QNAP) += qnap-poweroff.o
|
|
obj-$(CONFIG_POWER_RESET_RESTART) += restart-poweroff.o
|
|
obj-$(CONFIG_POWER_RESET_SUN6I) += sun6i-reboot.o
|
|
obj-$(CONFIG_POWER_RESET_ST) += st-poweroff.o
|
|
obj-$(CONFIG_POWER_RESET_VERSATILE) += arm-versatile-reboot.o
|
|
obj-$(CONFIG_POWER_RESET_VEXPRESS) += vexpress-poweroff.o
|
|
obj-$(CONFIG_POWER_RESET_XGENE) += xgene-reboot.o
|
|
obj-$(CONFIG_POWER_RESET_KEYSTONE) += keystone-reset.o
|
|
obj-$(CONFIG_POWER_RESET_SYSCON) += syscon-reboot.o
|