diff options
author | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2021-01-29 20:51:51 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-01-31 13:42:41 +0100 |
commit | 9d8dbe989029e6d767ed56773ac65409da625381 (patch) | |
tree | 00c4bfc099abd49a3f4b67699c1ea6c7160e582f /drivers/staging/hikey9xx/hi6421-spmi-pmic.c | |
parent | a2e904fc59e15d9e4128415579a2664ab3a1ed14 (diff) | |
download | linux-9d8dbe989029e6d767ed56773ac65409da625381.tar.gz linux-9d8dbe989029e6d767ed56773ac65409da625381.tar.bz2 linux-9d8dbe989029e6d767ed56773ac65409da625381.zip |
staging: hikey9xx: hi6421-spmi-pmic: cleanup header file
Remove the IRQ list from the header, as this is used only
inside the driver itself. Also, get rid of two unused
defines.
The net result is that only struct hi6421_spmi_pmic remains
on it, as this is used by the regulator driver.
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Link: https://lore.kernel.org/r/138c3a11e4de0ebabdf27932957852136c2f7510.1611949675.git.mchehab+huawei@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/hikey9xx/hi6421-spmi-pmic.c')
-rw-r--r-- | drivers/staging/hikey9xx/hi6421-spmi-pmic.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/drivers/staging/hikey9xx/hi6421-spmi-pmic.c b/drivers/staging/hikey9xx/hi6421-spmi-pmic.c index c8e55b7b08e2..909f7b106af4 100644 --- a/drivers/staging/hikey9xx/hi6421-spmi-pmic.c +++ b/drivers/staging/hikey9xx/hi6421-spmi-pmic.c @@ -17,6 +17,23 @@ #include <linux/slab.h> #include <linux/spmi.h> +enum hi6421_spmi_pmic_irq_list { + OTMP = 0, + VBUS_CONNECT, + VBUS_DISCONNECT, + ALARMON_R, + HOLD_6S, + HOLD_1S, + POWERKEY_UP, + POWERKEY_DOWN, + OCP_SCP_R, + COUL_R, + SIM0_HPD_R, + SIM0_HPD_F, + SIM1_HPD_R, + SIM1_HPD_F, + PMIC_IRQ_LIST_MAX, +}; /* 8-bit register offset in PMIC */ #define HISI_MASK_STATE 0xff |