spi: remove redundant assignment to variable ms
authorColin Ian King <colin.king@canonical.com>
Fri, 10 Apr 2020 12:23:15 +0000 (13:23 +0100)
committerMark Brown <broonie@kernel.org>
Tue, 14 Apr 2020 17:36:31 +0000 (18:36 +0100)
commit49686df5b874e5ed6249bc622b73ad9a9e71cd99
tree1d5f8f63d7bcec679734383139ebc71e9495b5b4
parent7cb88afb42a49e5a6d51d458ffbb3d02e2c0755c
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 <colin.king@canonical.com>
Reviewed-by: Geert Uytterhoeven <geert@linux-m68k.org>
Addresses-Coverity: ("Unused value")
Link: https://lore.kernel.org/r/20200410122315.17523-1-colin.king@canonical.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi.c