Message ID | 1588049801-37995-1-git-send-email-sanju.mehta@amd.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 68d047cb0a20f612506c6cf3a98e3600a7d4371f |
Headers | show |
Series | spi: spi-amd: fix warning | expand |
On Mon, 27 Apr 2020 23:56:41 -0500, Sanjay R Mehta wrote: > remove unused variable "opcode" > > Signed-off-by: Sanjay R Mehta <sanju.mehta@amd.com> > Signed-off-by: Mark Brown <broonie@kernel.org> > --- > drivers/spi/spi-amd.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > [...] Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-5.8 Thanks! [1/1] spi: spi-amd: fix warning commit: 68d047cb0a20f612506c6cf3a98e3600a7d4371f All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Linus during the next merge window (or sooner if it is a bug fix), however if problems are discovered then the patch may be dropped or reverted. You may get further e-mails resulting from automated or manual testing and review of the tree, please engage with people reporting problems and send followup patches addressing any issues that are reported if needed. If any updates are required or you are submitting further changes they should be sent as incremental updates against current git, existing patches will not be replaced. Please add any relevant lists and maintainers to the CCs when replying to this mail. Thanks, Mark
diff --git a/drivers/spi/spi-amd.c b/drivers/spi/spi-amd.c index 0d9debe..c5a16dd 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;