From: Jason Yan Date: Thu, 22 Aug 2019 01:03:51 +0000 (+0200) Subject: bus: moxtet: remove set but not used variable 'dummy' X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=caebdd3c114e522b5c9bda2098990e09abfba5b0;p=linux.git bus: moxtet: remove set but not used variable 'dummy' Fixes gcc '-Wunused-but-set-variable' warning: drivers/bus/moxtet.c: In function moxtet_remove: drivers/bus/moxtet.c:822:6: warning: variable dummy set but not used [-Wunused-but-set-variable] Link: https://lore.kernel.org/r/20190822010351.15660-3-marek.behun@nic.cz Signed-off-by: Jason Yan Signed-off-by: Marek BehĂșn Signed-off-by: Arnd Bergmann --- diff --git a/drivers/bus/moxtet.c b/drivers/bus/moxtet.c index 1ee4570e7e17b..baccf76093572 100644 --- a/drivers/bus/moxtet.c +++ b/drivers/bus/moxtet.c @@ -819,7 +819,6 @@ static int moxtet_probe(struct spi_device *spi) static int moxtet_remove(struct spi_device *spi) { struct moxtet *moxtet = spi_get_drvdata(spi); - int dummy; free_irq(moxtet->dev_irq, moxtet); @@ -827,7 +826,7 @@ static int moxtet_remove(struct spi_device *spi) moxtet_unregister_debugfs(moxtet); - dummy = device_for_each_child(moxtet->dev, NULL, __unregister); + device_for_each_child(moxtet->dev, NULL, __unregister); mutex_destroy(&moxtet->lock);