Re: [PATCH v3 2/2] siox: Make remove callback return void

2020-11-25 Thread Thorsten Scherer
Hello, On Wed, Nov 25, 2020 at 10:31:06AM +0100, Uwe Kleine-König wrote: > 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

[PATCH v3 2/2] siox: Make remove callback return void

2020-11-25 Thread Uwe Kleine-König
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. Signed-off-by: Uwe Kleine-König --- drivers/siox/siox-core.c | 5