mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-06 13:09:58 +00:00
spi: tegra210-quad: Fix combined sequence
Return value should be updated to zero in combined sequence routine if transfer is completed successfully. Currently it holds timeout value resulting in errors. Signed-off-by: Krishna Yarlagadda <kyarlagadda@nvidia.com> Link: https://lore.kernel.org/r/20221001122148.9158-1-kyarlagadda@nvidia.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
8e9204cddc
commit
8777dd9dff
@ -1157,6 +1157,11 @@ static int tegra_qspi_combined_seq_xfer(struct tegra_qspi *tqspi,
|
|||||||
msg->actual_length += xfer->len;
|
msg->actual_length += xfer->len;
|
||||||
transfer_phase++;
|
transfer_phase++;
|
||||||
}
|
}
|
||||||
|
if (!xfer->cs_change) {
|
||||||
|
tegra_qspi_transfer_end(spi);
|
||||||
|
spi_transfer_delay_exec(xfer);
|
||||||
|
}
|
||||||
|
ret = 0;
|
||||||
|
|
||||||
exit:
|
exit:
|
||||||
msg->status = ret;
|
msg->status = ret;
|
||||||
|
Loading…
Reference in New Issue
Block a user