diff options
| author | 2021-02-26 15:28:52 +0100 | |
|---|---|---|
| committer | 2021-06-02 10:50:00 +0100 | |
| commit | 50e4d7a2a667353321d4315fcc025e76c4fa2a89 (patch) | |
| tree | ae435572afdf4c4e83b82713130200e1861c9191 /include/linux/mfd | |
| parent | mfd: da9052/stmpe: Add and modify MODULE_DEVICE_TABLE (diff) | |
| download | linux-dev-50e4d7a2a667353321d4315fcc025e76c4fa2a89.tar.xz linux-dev-50e4d7a2a667353321d4315fcc025e76c4fa2a89.zip | |
mfd: lp87565: Handle optional reset pin
Optionally handle the NRST pin (active low reset) in order to start from a
known state during boot and to shut down the chip when rebooting.
Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'include/linux/mfd')
| -rw-r--r-- | include/linux/mfd/lp87565.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/mfd/lp87565.h b/include/linux/mfd/lp87565.h index 94cb581af34b..4c895072d91b 100644 --- a/include/linux/mfd/lp87565.h +++ b/include/linux/mfd/lp87565.h @@ -252,5 +252,6 @@ struct lp87565 { u8 rev; u8 dev_type; struct regmap *regmap; + struct gpio_desc *reset_gpio; }; #endif /* __LINUX_MFD_LP87565_H */ |
