aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/mfd
diff options
context:
space:
mode:
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>2022-05-30 21:24:29 +0200
committerLee Jones <lee@kernel.org>2022-07-19 10:54:38 +0100
commit6e1f1b1c93ceec1d9bfa9213775abc19161de5f1 (patch)
tree97120181d6eacab311eb2b109ebbe166f1a583bf /include/linux/mfd
parentmfd: t7l66xb: Drop platform disable callback (diff)
downloadlinux-dev-6e1f1b1c93ceec1d9bfa9213775abc19161de5f1.tar.xz
linux-dev-6e1f1b1c93ceec1d9bfa9213775abc19161de5f1.zip
mfd: tc6387xb: Drop disable callback that is never called
The driver never calls the disable callback, so drop the member from the platform struct and all callbacks from the actual platform datas. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Lee Jones <lee.jones@linaro.org> Link: https://lore.kernel.org/r/20220530192430.2108217-4-u.kleine-koenig@pengutronix.de
Diffstat (limited to 'include/linux/mfd')
-rw-r--r--include/linux/mfd/tc6387xb.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/mfd/tc6387xb.h b/include/linux/mfd/tc6387xb.h
index b4888209494a..aacf1dcc86b9 100644
--- a/include/linux/mfd/tc6387xb.h
+++ b/include/linux/mfd/tc6387xb.h
@@ -12,7 +12,6 @@
struct tc6387xb_platform_data {
int (*enable)(struct platform_device *dev);
- int (*disable)(struct platform_device *dev);
int (*suspend)(struct platform_device *dev);
int (*resume)(struct platform_device *dev);
};