diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2020-11-25 12:31:06 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-12-10 18:17:15 +0300 |
commit | 1c12c27086dcef853832a7cbebcb48bdac8104b6 (patch) | |
tree | 933eaa6521bf08c89ce5717bcb711a24bd51ff11 /include/linux/siox.h | |
parent | 07d9a767ae5c3a9b0cf1adccbf157a6fae780de4 (diff) | |
download | linux-1c12c27086dcef853832a7cbebcb48bdac8104b6.tar.xz |
siox: Make remove callback return void
The driver core ignores the return value of the remove callback, so
don't give siox drivers the chance to provide a value.
All siox drivers only allocate devm-managed resources in
.probe, so there is no .remove callback to fix.
Tested-by: Thorsten Scherer <t.scherer@eckelmann.de>
Acked-by: Thorsten Scherer <t.scherer@eckelmann.de>
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Link: https://lore.kernel.org/r/20201125093106.240643-3-u.kleine-koenig@pengutronix.de
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux/siox.h')
-rw-r--r-- | include/linux/siox.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/siox.h b/include/linux/siox.h index da7225bf1877..6bfbda3f634c 100644 --- a/include/linux/siox.h +++ b/include/linux/siox.h @@ -36,7 +36,7 @@ bool siox_device_connected(struct siox_device *sdevice); struct siox_driver { int (*probe)(struct siox_device *sdevice); - int (*remove)(struct siox_device *sdevice); + void (*remove)(struct siox_device *sdevice); void (*shutdown)(struct siox_device *sdevice); /* |