diff options
author | Emil Goode <emilgoode@gmail.com> | 2013-07-30 19:35:36 +0200 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-07-31 17:55:40 +0100 |
commit | 6a3fc31f35025a583499c0d3b1c6fc5dcf6e48ec (patch) | |
tree | 9398fa6e064d59f0747cc50f3e2b295c8fd339ce /drivers/spi/spi-ep93xx.c | |
parent | 84ddb3c1df021c69a40af30e3e30cc7429a5d659 (diff) | |
download | op-kernel-dev-6a3fc31f35025a583499c0d3b1c6fc5dcf6e48ec.zip op-kernel-dev-6a3fc31f35025a583499c0d3b1c6fc5dcf6e48ec.tar.gz |
spi/ep93xx: Fix format specifier warning
This patch fixes the following sparse warning by changing the
the format specifier for size_t to %zu.
drivers/spi/spi-ep93xx.c:512:3: warning:
format ‘%d’ expects argument of type ‘int’,
but argument 3 has type ‘size_t’ [-Wformat]
Signed-off-by: Emil Goode <emilgoode@gmail.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers/spi/spi-ep93xx.c')
-rw-r--r-- | drivers/spi/spi-ep93xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-ep93xx.c b/drivers/spi/spi-ep93xx.c index 4c9a50c..31611f7 100644 --- a/drivers/spi/spi-ep93xx.c +++ b/drivers/spi/spi-ep93xx.c @@ -509,7 +509,7 @@ ep93xx_spi_dma_prepare(struct ep93xx_spi *espi, enum dma_transfer_direction dir) } if (WARN_ON(len)) { - dev_warn(&espi->pdev->dev, "len = %d expected 0!", len); + dev_warn(&espi->pdev->dev, "len = %zu expected 0!", len); return ERR_PTR(-EINVAL); } |