video: tegra20: dc: fix printing of framebuffer address

Framebuffer address should not be a pointer.

Signed-off-by: Jonas Schwöbel <jonasschwoebel@yahoo.de>
Signed-off-by: Svyatoslav Ryhel <clamor95@gmail.com>
This commit is contained in:
Jonas Schwöbel
2024-04-21 09:07:01 +02:00
committed by Anatolij Gustschin
parent 8c0eb06fbe
commit de903ac9ba
+1 -1
View 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;