omap2_mcspi: small fixes of output data format
Replaces %04x by %08x for 32-bits data output. Signed-off-by: Roman Tereshonkov <roman.tereshonkov@nokia.com> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
This commit is contained in:
parent
a330ce2001
commit
dda04c7bcf
1 changed files with 2 additions and 2 deletions
|
@ -533,7 +533,7 @@ omap2_mcspi_txrx_pio(struct spi_device *spi, struct spi_transfer *xfer)
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
#ifdef VERBOSE
|
#ifdef VERBOSE
|
||||||
dev_dbg(&spi->dev, "write-%d %04x\n",
|
dev_dbg(&spi->dev, "write-%d %08x\n",
|
||||||
word_len, *tx);
|
word_len, *tx);
|
||||||
#endif
|
#endif
|
||||||
__raw_writel(*tx++, tx_reg);
|
__raw_writel(*tx++, tx_reg);
|
||||||
|
@ -551,7 +551,7 @@ omap2_mcspi_txrx_pio(struct spi_device *spi, struct spi_transfer *xfer)
|
||||||
mcspi_write_chconf0(spi, l);
|
mcspi_write_chconf0(spi, l);
|
||||||
*rx++ = __raw_readl(rx_reg);
|
*rx++ = __raw_readl(rx_reg);
|
||||||
#ifdef VERBOSE
|
#ifdef VERBOSE
|
||||||
dev_dbg(&spi->dev, "read-%d %04x\n",
|
dev_dbg(&spi->dev, "read-%d %08x\n",
|
||||||
word_len, *(rx - 1));
|
word_len, *(rx - 1));
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue