]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
arm: ronetix: Avoid accessing global_data fb_base
authorSimon Glass <sjg@chromium.org>
Wed, 21 Aug 2024 16:18:59 +0000 (10:18 -0600)
committerTom Rini <trini@konsulko.com>
Mon, 26 Aug 2024 20:05:38 +0000 (14:05 -0600)
Use the new video function to get the framebuffer base.

Signed-off-by: Simon Glass <sjg@chromium.org>
board/ronetix/pm9263/pm9263.c

index 1de1bd6870163b020c6e93c709a40693a5525874..8125f064cf115f332814f8994e7c465601e456e0 100644 (file)
@@ -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;