diff options
author | Hsin-Hsiung Wang | 2020-12-09 18:33:43 -0800 |
---|---|---|
committer | Greg Kroah-Hartman | 2020-12-10 10:45:36 +0100 |
commit | d40c2d4ed62df64ce603c208bceff25245380157 (patch) | |
tree | 4950dd8a825772c2846014c620b30a7768dc55bf /include/linux/spmi.h | |
parent | 0be0a733c9cd396c3900ac10873419d8b21bfd39 (diff) |
spmi: Add driver shutdown support
Add new shutdown() method. Use it in the standard driver model style.
Link: https://lore.kernel.org/r/1603187810-30481-2-git-send-email-hsin-hsiung.wang@mediatek.com
Signed-off-by: Hsin-Hsiung Wang <hsin-hsiung.wang@mediatek.com>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Link: https://lore.kernel.org/r/20201210023344.2838141-4-sboyd@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux/spmi.h')
-rw-r--r-- | include/linux/spmi.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/spmi.h b/include/linux/spmi.h index 394a3f68bad5..729bcbf9f5ad 100644 --- a/include/linux/spmi.h +++ b/include/linux/spmi.h @@ -138,6 +138,7 @@ struct spmi_driver { struct device_driver driver; int (*probe)(struct spmi_device *sdev); void (*remove)(struct spmi_device *sdev); + void (*shutdown)(struct spmi_device *sdev); }; static inline struct spmi_driver *to_spmi_driver(struct device_driver *d) |