diff options
| author | Sanjay R Mehta <[email protected]> | 2020-04-27 23:56:41 -0500 |
|---|---|---|
| committer | Mark Brown <[email protected]> | 2020-04-28 17:52:41 +0100 |
| commit | 68d047cb0a20f612506c6cf3a98e3600a7d4371f (patch) | |
| tree | 65fbe15bb90d3bb1a614834d82af6096780a5731 | |
| parent | bbb336f39efcb1b5498f65f59f9af5773ad6dc2b (diff) | |
spi: spi-amd: fix warning
remove unused variable "opcode"
Signed-off-by: Sanjay R Mehta <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
| -rw-r--r-- | drivers/spi/spi-amd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-amd.c b/drivers/spi/spi-amd.c index 0d9debe1386e..c5a16dd44fa3 100644 --- a/drivers/spi/spi-amd.c +++ b/drivers/spi/spi-amd.c @@ -168,7 +168,7 @@ static inline int amd_spi_fifo_xfer(struct amd_spi *amd_spi, { struct spi_master *master = amd_spi->master; struct spi_transfer *xfer = NULL; - u8 cmd_opcode, opcode = 0; + u8 cmd_opcode; u8 *buf = NULL; u32 m_cmd = 0; u32 i = 0; |