diff options
author | Roman Tereshonkov <roman.tereshonkov@nokia.com> | 2010-03-15 09:06:29 +0000 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2010-04-28 01:25:43 -0600 |
commit | dda04c7bcf58cb02ac796beb1cf483aa5277f2af (patch) | |
tree | 8814f954c6620750f264f5e0ebbe5d748a608f50 /drivers/spi | |
parent | a330ce2001b290c59fe98c37e981683ef0a75fdf (diff) | |
download | op-kernel-dev-dda04c7bcf58cb02ac796beb1cf483aa5277f2af.zip op-kernel-dev-dda04c7bcf58cb02ac796beb1cf483aa5277f2af.tar.gz |
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>
Diffstat (limited to 'drivers/spi')
-rw-r--r-- | drivers/spi/omap2_mcspi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/spi/omap2_mcspi.c b/drivers/spi/omap2_mcspi.c index 581bd21..e0de0d0 100644 --- a/drivers/spi/omap2_mcspi.c +++ b/drivers/spi/omap2_mcspi.c @@ -533,7 +533,7 @@ omap2_mcspi_txrx_pio(struct spi_device *spi, struct spi_transfer *xfer) goto out; } #ifdef VERBOSE - dev_dbg(&spi->dev, "write-%d %04x\n", + dev_dbg(&spi->dev, "write-%d %08x\n", word_len, *tx); #endif __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); *rx++ = __raw_readl(rx_reg); #ifdef VERBOSE - dev_dbg(&spi->dev, "read-%d %04x\n", + dev_dbg(&spi->dev, "read-%d %08x\n", word_len, *(rx - 1)); #endif } |