forked from luck/tmp_suning_uos_patched
spi: spi-loopback-test: Fix 'tx_buf' might be 'rx_buf'
[ Upstream commit 9e37a3ab0627011fb63875e9a93094b6fc8ddf48 ] In function 'spi_test_run_iter': Value 'tx_buf' might be 'rx_buf'. Signed-off-by: Jay Fang <f.fangjian@huawei.com> Link: https://lore.kernel.org/r/1620629903-15493-5-git-send-email-f.fangjian@huawei.com Signed-off-by: Mark Brown <broonie@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
b980385a70
commit
cb42cf32ce
|
@ -874,7 +874,7 @@ static int spi_test_run_iter(struct spi_device *spi,
|
|||
test.transfers[i].len = len;
|
||||
if (test.transfers[i].tx_buf)
|
||||
test.transfers[i].tx_buf += tx_off;
|
||||
if (test.transfers[i].tx_buf)
|
||||
if (test.transfers[i].rx_buf)
|
||||
test.transfers[i].rx_buf += rx_off;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user