diff options
author | Tero Kristo | 2020-02-14 11:18:16 +0200 |
---|---|---|
committer | Lokesh Vutla | 2020-03-03 13:08:14 +0530 |
commit | 3b36b38f50cc3063f922db629f529b11ff92332b (patch) | |
tree | 3f8d930b14950a9b753bb8c36832c4f3a43cb9aa /drivers/misc/Makefile | |
parent | 344eb6d572adfadb0a11196ef8cf6508f6c704df (diff) |
misc: pmic_esm: Add support for PMIC ESM driver
The ESM (Error Signal Monitor) is used on certain PMIC versions to
handle error signals propagating from rest of the system. If these
reach the PMIC, it is typically a last resort fatal error which
requires a system reset. The ESM driver does the proper configuration
for the ESM module to reach this end goal. Initially, only TPS65941
PMIC is supported for this.
Signed-off-by: Tero Kristo <t-kristo@ti.com>
Diffstat (limited to 'drivers/misc/Makefile')
-rw-r--r-- | drivers/misc/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/misc/Makefile b/drivers/misc/Makefile index 60406c3e0a3..68e0e7ad172 100644 --- a/drivers/misc/Makefile +++ b/drivers/misc/Makefile @@ -73,3 +73,4 @@ obj-$(CONFIG_JZ4780_EFUSE) += jz4780_efuse.o obj-$(CONFIG_MICROCHIP_FLEXCOM) += microchip_flexcom.o obj-$(CONFIG_K3_AVS0) += k3_avs.o obj-$(CONFIG_ESM_K3) += k3_esm.o +obj-$(CONFIG_ESM_PMIC) += esm_pmic.o |