mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
rockchip: video: mipi: Modify format type for debug message
Modify format type for debug message. Signed-off-by: Eric Gao <eric.gao@rock-chips.com>
This commit is contained in:
parent
0c9eceb7af
commit
0c6d52bc4b
1 changed files with 4 additions and 4 deletions
|
@ -437,14 +437,14 @@ static int rk_mipi_ofdata_to_platdata(struct udevice *dev)
|
|||
|
||||
priv->grf = syscon_get_first_range(ROCKCHIP_SYSCON_GRF);
|
||||
if (priv->grf <= 0) {
|
||||
debug("%s: Get syscon grf failed (ret=%llu)\n",
|
||||
__func__, (u64)priv->grf);
|
||||
debug("%s: Get syscon grf failed (ret=%p)\n",
|
||||
__func__, priv->grf);
|
||||
return -ENXIO;
|
||||
}
|
||||
priv->regs = devfdt_get_addr(dev);
|
||||
if (priv->regs <= 0) {
|
||||
debug("%s: Get MIPI dsi address failed (ret=%llu)\n", __func__,
|
||||
(u64)priv->regs);
|
||||
debug("%s: Get MIPI dsi address failed (ret=%lu)\n", __func__,
|
||||
priv->regs);
|
||||
return -ENXIO;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue