mtd: fsl-quadspi: fix printk() format warning for size_t
authorBrian Norris <computersforpeace@gmail.com>
Mon, 12 Oct 2015 20:35:15 +0000 (13:35 -0700)
committerBrian Norris <computersforpeace@gmail.com>
Mon, 19 Oct 2015 16:50:45 +0000 (09:50 -0700)
Seen when compile-testing on non-32-bit arch:

    CC      drivers/mtd/spi-nor/fsl-quadspi.o
  drivers/mtd/spi-nor/fsl-quadspi.c: In function 'fsl_qspi_read':
  drivers/mtd/spi-nor/fsl-quadspi.c:873:2: warning: format '%d' expects argument of type 'int', but argument 6 has type 'size_t' [-Wformat=]
    dev_dbg(q->dev, "cmd [%x],read from 0x%p, len:%d\n",
    ^

Also drop the '0x' prefixing to the '%p' formatter, since %p already
knows how to format pointers appropriately.

Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Acked-by: Han xu <han.xu@freescale.com>
drivers/mtd/spi-nor/fsl-quadspi.c

index 2954f89fc8be9af420d681c90e87b7bcd052baf8..ca259faf4591d29e6f514dc27c5eb677177f72b9 100644 (file)
@@ -868,7 +868,7 @@ static int fsl_qspi_read(struct spi_nor *nor, loff_t from,
                }
        }
 
-       dev_dbg(q->dev, "cmd [%x],read from 0x%p, len:%d\n",
+       dev_dbg(q->dev, "cmd [%x],read from %p, len:%zd\n",
                cmd, q->ahb_addr + q->chip_base_addr + from - q->memmap_offs,
                len);