Commit 684a3ac7 authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Mark Brown

spi: pxa2xx: Fix printf() specifiers

Instead of explicit casting use proper specifier in one case,
and fix specifier signness in another.
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20210517140351.901-7-andriy.shevchenko@linux.intel.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent eb743ec6
...@@ -983,8 +983,8 @@ static int pxa2xx_spi_transfer_one(struct spi_controller *controller, ...@@ -983,8 +983,8 @@ static int pxa2xx_spi_transfer_one(struct spi_controller *controller,
/* warn ... we force this to PIO mode */ /* warn ... we force this to PIO mode */
dev_warn_ratelimited(&spi->dev, dev_warn_ratelimited(&spi->dev,
"DMA disabled for transfer length %ld greater than %d\n", "DMA disabled for transfer length %u greater than %d\n",
(long)transfer->len, MAX_DMA_LEN); transfer->len, MAX_DMA_LEN);
} }
/* Setup the transfer state based on the type of transfer */ /* Setup the transfer state based on the type of transfer */
...@@ -1115,8 +1115,7 @@ static int pxa2xx_spi_transfer_one(struct spi_controller *controller, ...@@ -1115,8 +1115,7 @@ static int pxa2xx_spi_transfer_one(struct spi_controller *controller,
if (tx_level) { if (tx_level) {
/* On MMP2, flipping SSE doesn't to empty TXFIFO. */ /* On MMP2, flipping SSE doesn't to empty TXFIFO. */
dev_warn(&spi->dev, "%d bytes of garbage in TXFIFO!\n", dev_warn(&spi->dev, "%u bytes of garbage in Tx FIFO!\n", tx_level);
tx_level);
if (tx_level > transfer->len) if (tx_level > transfer->len)
tx_level = transfer->len; tx_level = transfer->len;
drv_data->tx += tx_level; drv_data->tx += tx_level;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment