OSDN Git Service

spi: spi-fsl-spi: call spi_finalize_current_message() at the end
authorChristophe Leroy <christophe.leroy@c-s.fr>
Wed, 22 May 2019 11:00:36 +0000 (11:00 +0000)
committerMark Brown <broonie@kernel.org>
Wed, 22 May 2019 12:20:47 +0000 (13:20 +0100)
spi_finalize_current_message() shall be called once all
actions are finished, otherwise the last actions might
step over a newly started transfer.

Fixes: c592becbe704 ("spi: fsl-(e)spi: migrate to generic master queueing")
Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-fsl-spi.c

index b36ac6a..7fbdaf0 100644 (file)
@@ -432,7 +432,6 @@ static int fsl_spi_do_one_msg(struct spi_master *master,
        }
 
        m->status = status;
-       spi_finalize_current_message(master);
 
        if (status || !cs_change) {
                ndelay(nsecs);
@@ -440,6 +439,7 @@ static int fsl_spi_do_one_msg(struct spi_master *master,
        }
 
        fsl_spi_setup_transfer(spi, NULL);
+       spi_finalize_current_message(master);
        return 0;
 }