rockchip: video: vop: Fix format of fbbase in debug string
authorArnaud Patard (Rtp) <arnaud.patard@rtp-net.org>
Fri, 5 Mar 2021 10:27:52 +0000 (11:27 +0100)
committerAnatolij Gustschin <agust@denx.de>
Sat, 10 Apr 2021 09:55:37 +0000 (11:55 +0200)
The debug string printing the device name, framebuffer address and of node
is using %lu as format for the framebuffer address, which is not so nice.
Change it to %lx.

Signed-off-by: Arnaud Patard <arnaud.patard@rtp-net.org>
Tested-by: Peter Robinson <pbrobinson@gmail.com>
drivers/video/rockchip/rk_vop.c

index 3eb5e8c25ca4786904fb562c44c95d311c9eacaa..030fc5e66c6cd474111bb2dea445a33a92c15bd6 100644 (file)
@@ -240,7 +240,7 @@ static int rk_display_init(struct udevice *dev, ulong fbbase, ofnode ep_node)
        ofnode remote;
        const char *compat;
 
-       debug("%s(%s, %lu, %s)\n", __func__,
+       debug("%s(%s, 0x%lx, %s)\n", __func__,
              dev_read_name(dev), fbbase, ofnode_get_name(ep_node));
 
        ret = ofnode_read_u32(ep_node, "remote-endpoint", &remote_phandle);