diff options
| author | Simon Glass <[email protected]> | 2024-08-21 10:18:59 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-08-26 14:05:38 -0600 |
| commit | 4b39b56c3a46902cabe367ac03bd8dcc430c4964 (patch) | |
| tree | 04eef0f8cccd6dc303f91bd1f84ab62646db24f1 | |
| parent | 54a221d2cdf521bffd433ee52e33c83b00d2bfe6 (diff) | |
arm: ronetix: Avoid accessing global_data fb_base
Use the new video function to get the framebuffer base.
Signed-off-by: Simon Glass <[email protected]>
| -rw-r--r-- | board/ronetix/pm9263/pm9263.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/board/ronetix/pm9263/pm9263.c b/board/ronetix/pm9263/pm9263.c index 1de1bd68701..8125f064cf1 100644 --- a/board/ronetix/pm9263/pm9263.c +++ b/board/ronetix/pm9263/pm9263.c @@ -9,6 +9,7 @@ #include <config.h> #include <init.h> +#include <video.h> #include <asm/global_data.h> #include <linux/sizes.h> #include <asm/io.h> @@ -110,11 +111,12 @@ int dram_init_banksize(void) #ifdef CONFIG_DISPLAY_BOARDINFO int checkboard (void) { + ulong fb_base = video_get_fb(); char *ss; printf ("Board : Ronetix PM9263\n"); - switch (gd->fb_base) { + switch (fb_base) { case PHYS_PSRAM: ss = "(PSRAM)"; break; @@ -127,7 +129,7 @@ int checkboard (void) ss = ""; break; } - printf("Video memory : 0x%08lX %s\n", gd->fb_base, ss ); + printf("Video memory : 0x%08lX %s\n", fb_base, ss); printf ("\n"); return 0; |
