diff options
| author | Svyatoslav Ryhel <[email protected]> | 2023-10-24 10:49:07 +0300 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-11-03 17:42:14 -0400 |
| commit | 8b8a00eaf47719ee04338eff9cd94b0408779d9d (patch) | |
| tree | 6c1112be1f2b4d4ae255818b6fa24bffe8ff3371 /drivers/sysreset/Makefile | |
| parent | 9d937cdc2ce831adfef969ced5e35b72a3131dea (diff) | |
sysreset: implement TPS65910 sysreset functions
TPS65910/TPS65911 PMICs have embedded power control functions
used by some device to initiane device power off. Implement it as
sysreset driver.
Signed-off-by: Svyatoslav Ryhel <[email protected]>
Diffstat (limited to 'drivers/sysreset/Makefile')
| -rw-r--r-- | drivers/sysreset/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/sysreset/Makefile b/drivers/sysreset/Makefile index f62db899da7..0d96a204a95 100644 --- a/drivers/sysreset/Makefile +++ b/drivers/sysreset/Makefile @@ -19,6 +19,7 @@ obj-$(CONFIG_SYSRESET_SOCFPGA) += sysreset_socfpga.o obj-$(CONFIG_SYSRESET_SOCFPGA_SOC64) += sysreset_socfpga_soc64.o obj-$(CONFIG_SYSRESET_TEGRA) += sysreset_tegra.o obj-$(CONFIG_SYSRESET_TI_SCI) += sysreset-ti-sci.o +obj-$(CONFIG_$(SPL_TPL_)SYSRESET_TPS65910) += sysreset_tps65910.o obj-$(CONFIG_$(SPL_TPL_)SYSRESET_TPS80031) += sysreset_tps80031.o obj-$(CONFIG_SYSRESET_SYSCON) += sysreset_syscon.o obj-$(CONFIG_SYSRESET_WATCHDOG) += sysreset_watchdog.o |
