spi: spi-geni-qcom: Rename the label unmap_if_dma
The code at unmap_if_dma label doesn't contain unmapping dma anymore but has only fsm reset. Rename it to reset_if_dma accordingly. No functional change. Signed-off-by: Vijaya Krishna Nivarthi <quic_vnivarth@quicinc.com> Reviewed-by: Douglas Anderson <dianders@chromium.org> Link: https://lore.kernel.org/r/1696614170-18969-1-git-send-email-quic_vnivarth@quicinc.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
committed by
Mark Brown
parent
df22568ad8
commit
8a6b446d8a
@@ -166,7 +166,7 @@ static void handle_se_timeout(struct spi_master *spi,
|
|||||||
* doesn`t support CMD Cancel sequnece
|
* doesn`t support CMD Cancel sequnece
|
||||||
*/
|
*/
|
||||||
spin_unlock_irq(&mas->lock);
|
spin_unlock_irq(&mas->lock);
|
||||||
goto unmap_if_dma;
|
goto reset_if_dma;
|
||||||
}
|
}
|
||||||
|
|
||||||
reinit_completion(&mas->cancel_done);
|
reinit_completion(&mas->cancel_done);
|
||||||
@@ -175,7 +175,7 @@ static void handle_se_timeout(struct spi_master *spi,
|
|||||||
|
|
||||||
time_left = wait_for_completion_timeout(&mas->cancel_done, HZ);
|
time_left = wait_for_completion_timeout(&mas->cancel_done, HZ);
|
||||||
if (time_left)
|
if (time_left)
|
||||||
goto unmap_if_dma;
|
goto reset_if_dma;
|
||||||
|
|
||||||
spin_lock_irq(&mas->lock);
|
spin_lock_irq(&mas->lock);
|
||||||
reinit_completion(&mas->abort_done);
|
reinit_completion(&mas->abort_done);
|
||||||
@@ -193,7 +193,7 @@ static void handle_se_timeout(struct spi_master *spi,
|
|||||||
mas->abort_failed = true;
|
mas->abort_failed = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
unmap_if_dma:
|
reset_if_dma:
|
||||||
if (mas->cur_xfer_mode == GENI_SE_DMA) {
|
if (mas->cur_xfer_mode == GENI_SE_DMA) {
|
||||||
if (xfer) {
|
if (xfer) {
|
||||||
if (xfer->tx_buf) {
|
if (xfer->tx_buf) {
|
||||||
|
|||||||
Reference in New Issue
Block a user