Re: [PATCH] spi: remove redundant put_device

2019-07-17 Thread Mark Brown
On Wed, Jul 17, 2019 at 06:05:44PM +0800, Ding Xiang wrote: > device_unregister will call put_device, > so remove the redundant put_device > child = device_find_child(&ctlr->dev, NULL, match_true); > - if (child) { > + if (child) > /* Remove registered slave */ >

[PATCH] spi: remove redundant put_device

2019-07-17 Thread Ding Xiang
device_unregister will call put_device, so remove the redundant put_device Signed-off-by: Ding Xiang --- drivers/spi/spi.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c index 75ac046..d753689 100644 --- a/drivers/spi/spi.c +++ b/driv