| From b55b130b0bd0d108d7da7a392844387b2abc15b4 Mon Sep 17 00:00:00 2001 |
| From: Andy Shevchenko <andriy.shevchenko@linux.intel.com> |
| Date: Sat, 15 Jun 2019 20:41:35 +0300 |
| Subject: [PATCH] spi: No need to assign dummy value in |
| spi_unregister_controller() |
| MIME-Version: 1.0 |
| Content-Type: text/plain; charset=UTF-8 |
| Content-Transfer-Encoding: 8bit |
| |
| commit ebc37af5e0a134355ea2b62ed4141458bdbd5389 upstream. |
| |
| The device_for_each_child() doesn't require the returned value to be checked. |
| Thus, drop the dummy variable completely and have no warning anymore: |
| |
| drivers/spi/spi.c: In function ‘spi_unregister_controller’: |
| drivers/spi/spi.c:2480:6: warning: variable ‘dummy’ set but not used [-Wunused-but-set-variable] |
| int dummy; |
| ^~~~~ |
| |
| Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> |
| Signed-off-by: Mark Brown <broonie@kernel.org> |
| Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> |
| |
| diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c |
| index e32cc591f409..d512d9c216c0 100644 |
| --- a/drivers/spi/spi.c |
| +++ b/drivers/spi/spi.c |
| @@ -2471,7 +2471,6 @@ void spi_unregister_controller(struct spi_controller *ctlr) |
| { |
| struct spi_controller *found; |
| int id = ctlr->bus_num; |
| - int dummy; |
| |
| /* First make sure that this controller was ever added */ |
| mutex_lock(&board_lock); |
| @@ -2485,7 +2484,7 @@ void spi_unregister_controller(struct spi_controller *ctlr) |
| list_del(&ctlr->list); |
| mutex_unlock(&board_lock); |
| |
| - dummy = device_for_each_child(&ctlr->dev, NULL, __unregister); |
| + device_for_each_child(&ctlr->dev, NULL, __unregister); |
| device_unregister(&ctlr->dev); |
| /* free bus id */ |
| mutex_lock(&board_lock); |
| -- |
| 2.27.0 |
| |