mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-24 14:54:49 +08:00
spi: spi-fsl-dspi: Fix typos
mask of -> mask off at and -> and Signed-off-by: Vladimir Oltean <olteanv@gmail.com> Link: https://lore.kernel.org/r/20190818180115.31114-12-olteanv@gmail.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
d6bdfa6c20
commit
206175306d
@ -232,7 +232,7 @@ static void dspi_push_rx(struct fsl_dspi *dspi, u32 rxdata)
|
|||||||
if (!dspi->rx)
|
if (!dspi->rx)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
/* Mask of undefined bits */
|
/* Mask off undefined bits */
|
||||||
rxdata &= (1 << dspi->bits_per_word) - 1;
|
rxdata &= (1 << dspi->bits_per_word) - 1;
|
||||||
|
|
||||||
if (dspi->bytes_per_word == 1)
|
if (dspi->bytes_per_word == 1)
|
||||||
@ -642,7 +642,7 @@ static void dspi_eoq_read(struct fsl_dspi *dspi)
|
|||||||
{
|
{
|
||||||
int fifo_size = DSPI_FIFO_SIZE;
|
int fifo_size = DSPI_FIFO_SIZE;
|
||||||
|
|
||||||
/* Read one FIFO entry at and push to rx buffer */
|
/* Read one FIFO entry and push to rx buffer */
|
||||||
while ((dspi->rx < dspi->rx_end) && fifo_size--)
|
while ((dspi->rx < dspi->rx_end) && fifo_size--)
|
||||||
dspi_push_rx(dspi, fifo_read(dspi));
|
dspi_push_rx(dspi, fifo_read(dspi));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user