From: Colin Ian King Date: Fri, 10 Apr 2020 12:23:15 +0000 (+0100) Subject: spi: remove redundant assignment to variable ms X-Git-Tag: v5.8-rc1~239^2^2~85 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=49686df5b874e5ed6249bc622b73ad9a9e71cd99;p=thirdparty%2Flinux.git spi: remove redundant assignment to variable ms The variable ms is being initialized with a value that is never read and it is being updated later with a new value. The initialization is redundant and can be removed. Signed-off-by: Colin Ian King Reviewed-by: Geert Uytterhoeven Addresses-Coverity: ("Unused value") Link: https://lore.kernel.org/r/20200410122315.17523-1-colin.king@canonical.com Signed-off-by: Mark Brown --- diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c index c92c89467e7ed..5446b07dcd3a1 100644 --- a/drivers/spi/spi.c +++ b/drivers/spi/spi.c @@ -1075,7 +1075,7 @@ static int spi_transfer_wait(struct spi_controller *ctlr, { struct spi_statistics *statm = &ctlr->statistics; struct spi_statistics *stats = &msg->spi->statistics; - unsigned long long ms = 1; + unsigned long long ms; if (spi_controller_is_slave(ctlr)) { if (wait_for_completion_interruptible(&ctlr->xfer_completion)) {