Skip to content

Commit

Permalink
spi: fsl-espi: improve message length handling
Browse files Browse the repository at this point in the history
Move checking for a zero-length message up in the call chain and
use m->frame_length instead of re-calculating the overall length
of all transfers in the message.

Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
  • Loading branch information
Heiner Kallweit authored and Mark Brown committed Sep 12, 2016
1 parent cce7e3a commit 06af115
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions drivers/spi/spi-fsl-espi.c
Original file line number Diff line number Diff line change
Expand Up @@ -283,8 +283,7 @@ static int fsl_espi_do_trans(struct spi_message *m, struct spi_transfer *trans)

fsl_espi_setup_transfer(spi, trans);

if (trans->len)
ret = fsl_espi_bufs(spi, trans);
ret = fsl_espi_bufs(spi, trans);

if (trans->delay_usecs)
udelay(trans->delay_usecs);
Expand Down Expand Up @@ -313,7 +312,7 @@ static int fsl_espi_do_one_msg(struct spi_master *master,
struct spi_message *m)
{
struct mpc8xxx_spi *mspi = spi_master_get_devdata(m->spi->master);
unsigned int delay_usecs = 0, xfer_len = 0;
unsigned int delay_usecs = 0;
struct spi_transfer *t, trans = {};
int ret;

Expand All @@ -322,23 +321,22 @@ static int fsl_espi_do_one_msg(struct spi_master *master,
goto out;

list_for_each_entry(t, &m->transfers, transfer_list) {
if ((t->tx_buf) || (t->rx_buf))
xfer_len += t->len;
if (t->delay_usecs > delay_usecs)
delay_usecs = t->delay_usecs;
}

t = list_first_entry(&m->transfers, struct spi_transfer,
transfer_list);

trans.len = xfer_len;
trans.len = m->frame_length;
trans.speed_hz = t->speed_hz;
trans.bits_per_word = t->bits_per_word;
trans.delay_usecs = delay_usecs;
trans.tx_buf = mspi->local_buf;
trans.rx_buf = mspi->local_buf;

ret = fsl_espi_trans(m, &trans);
if (trans.len)
ret = fsl_espi_trans(m, &trans);

m->actual_length = ret ? 0 : trans.len;
out:
Expand Down

0 comments on commit 06af115

Please sign in to comment.