]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
video: tegra20: dc: fix printing of framebuffer address
authorJonas Schwöbel <jonasschwoebel@yahoo.de>
Tue, 23 Jan 2024 17:16:24 +0000 (19:16 +0200)
committerAnatolij Gustschin <agust@denx.de>
Sun, 21 Apr 2024 07:07:01 +0000 (09:07 +0200)
Framebuffer address should not be a pointer.

Signed-off-by: Jonas Schwöbel <jonasschwoebel@yahoo.de>
Signed-off-by: Svyatoslav Ryhel <clamor95@gmail.com>
drivers/video/tegra20/tegra-dc.c

index 2c9017807f2afb16cd582cd238ba7085f78e219e..856d507cc5c61fcb20dffaaa2d6cdd04a7f61e85 100644 (file)
@@ -412,7 +412,7 @@ static int tegra_lcd_probe(struct udevice *dev)
        uc_priv->xsize = priv->width;
        uc_priv->ysize = priv->height;
        uc_priv->bpix = priv->log2_bpp;
-       debug("LCD frame buffer at %pa, size %x\n", &priv->frame_buffer,
+       debug("LCD frame buffer at %08x, size %x\n", priv->frame_buffer,
              plat->size);
 
        return 0;