Re: [PATCH 5/5] spi: make remove callback a void function

2022-03-02 Thread Pavel Machek
Hi! > The value returned by an spi driver's remove function is mostly ignored. > (Only an error message is printed if the value is non-zero that the > error is ignored.) > > So change the prototype of the remove function to return no value. This > way driver authors are not tempted to assume that

Re: [PATCH 5/5] spi: make remove callback a void function

2022-02-19 Thread Hans Verkuil
On 23/01/2022 18:52, Uwe Kleine-König wrote: > The value returned by an spi driver's remove function is mostly ignored. > (Only an error message is printed if the value is non-zero that the > error is ignored.) > > So change the prototype of the remove function to return no value. This > way drive

Re: [PATCH 5/5] spi: make remove callback a void function

2022-02-09 Thread Mark Brown
On Sun, Jan 23, 2022 at 06:52:01PM +0100, Uwe Kleine-König wrote: > The value returned by an spi driver's remove function is mostly ignored. > (Only an error message is printed if the value is non-zero that the > error is ignored.) > > So change the prototype of the remove function to return no va

Re: [PATCH 5/5] spi: make remove callback a void function

2022-01-26 Thread Miquel Raynal
Hi Uwe, u.kleine-koe...@pengutronix.de wrote on Sun, 23 Jan 2022 18:52:01 +0100: > The value returned by an spi driver's remove function is mostly ignored. > (Only an error message is printed if the value is non-zero that the > error is ignored.) > > So change the prototype of the remove functio

Re: [PATCH 5/5] spi: make remove callback a void function

2022-01-26 Thread Uwe Kleine-König
[Dropped a few people from Cc that are not reachable (Harry Morris, Charles-Antoine Couret, Marco Felsch)] On Tue, Jan 25, 2022 at 09:47:59AM +, Jonathan Cameron wrote: > On Sun, 23 Jan 2022 18:52:01 +0100 > Uwe Kleine-König wrote: > > > The value returned by an spi driver's remove function

Re: [PATCH 5/5] spi: make remove callback a void function

2022-01-26 Thread Stefan Schmidt
Hello. On 23.01.22 18:52, Uwe Kleine-König wrote: The value returned by an spi driver's remove function is mostly ignored. (Only an error message is printed if the value is non-zero that the error is ignored.) So change the prototype of the remove function to return no value. This way driver

Re: [PATCH 5/5] spi: make remove callback a void function

2022-01-26 Thread Alexandre Belloni
On 23/01/2022 18:52:01+0100, Uwe Kleine-König wrote: > The value returned by an spi driver's remove function is mostly ignored. > (Only an error message is printed if the value is non-zero that the > error is ignored.) > > So change the prototype of the remove function to return no value. This > w

Re: [PATCH 5/5] spi: make remove callback a void function

2022-01-26 Thread Geert Uytterhoeven
On Sun, Jan 23, 2022 at 6:54 PM Uwe Kleine-König wrote: > The value returned by an spi driver's remove function is mostly ignored. > (Only an error message is printed if the value is non-zero that the > error is ignored.) > > So change the prototype of the remove function to return no value. This

Re: [PATCH 5/5] spi: make remove callback a void function

2022-01-26 Thread Jérôme Pouiller
On Sunday 23 January 2022 18:52:01 CET Uwe Kleine-König wrote: > > The value returned by an spi driver's remove function is mostly ignored. > (Only an error message is printed if the value is non-zero that the > error is ignored.) > > So change the prototype of the remove function to return no va

Re: [PATCH 5/5] spi: make remove callback a void function

2022-01-25 Thread Andy Shevchenko
On Sun, Jan 23, 2022 at 06:52:01PM +0100, Uwe Kleine-König wrote: > The value returned by an spi driver's remove function is mostly ignored. > (Only an error message is printed if the value is non-zero that the > error is ignored.) > > So change the prototype of the remove function to return no va