summaryrefslogtreecommitdiff
path: root/drivers/spi
diff options
context:
space:
mode:
authorYork Sun <yorksun@freescale.com>2015-08-03 12:02:05 -0700
committerSimon Glass <sjg@chromium.org>2015-08-06 07:31:13 -0600
commitfdb9f349be255b9b69a5e1a300296779b48a36b0 (patch)
treed23f5e9c6bd54398d2be645821e89c8a1f2cf99e /drivers/spi
parentd1de41d7fa68b29510da1320d6646fcc19113af2 (diff)
downloadu-boot-imx-fdb9f349be255b9b69a5e1a300296779b48a36b0.zip
u-boot-imx-fdb9f349be255b9b69a5e1a300296779b48a36b0.tar.gz
u-boot-imx-fdb9f349be255b9b69a5e1a300296779b48a36b0.tar.bz2
lib/fdtdec: Fix compiling warning caused by changing fdt_addr_t type
fdt_addr_t is changed to phys_addr_t. The format in debug should be updated to %pa to match the type. Signed-off-by: York Sun <yorksun@freescale.com> CC: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/spi')
-rw-r--r--drivers/spi/fsl_dspi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/spi/fsl_dspi.c b/drivers/spi/fsl_dspi.c
index 7928531..3881b2e 100644
--- a/drivers/spi/fsl_dspi.c
+++ b/drivers/spi/fsl_dspi.c
@@ -664,8 +664,8 @@ static int fsl_dspi_ofdata_to_platdata(struct udevice *bus)
plat->speed_hz = fdtdec_get_int(blob,
node, "spi-max-frequency", FSL_DSPI_DEFAULT_SCK_FREQ);
- debug("DSPI: regs=0x%llx, max-frequency=%d, endianess=%s, num-cs=%d\n",
- (u64)plat->regs_addr, plat->speed_hz,
+ debug("DSPI: regs=%pa, max-frequency=%d, endianess=%s, num-cs=%d\n",
+ &plat->regs_addr, plat->speed_hz,
plat->flags & DSPI_FLAG_REGMAP_ENDIAN_BIG ? "be" : "le",
plat->num_chipselect);