diff options
| author | Simon Glass <[email protected]> | 2024-08-21 10:18:58 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-08-26 14:05:38 -0600 |
| commit | 54a221d2cdf521bffd433ee52e33c83b00d2bfe6 (patch) | |
| tree | b3f9165cfb1c79973b8a3cfd9acde6ff7f8bf6a0 | |
| parent | 1a36338e6818ac4ca5965b50a733cbc70ee9eec8 (diff) | |
arm: friendlyarm: 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/friendlyarm/nanopi2/board.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/board/friendlyarm/nanopi2/board.c b/board/friendlyarm/nanopi2/board.c index c8cbc5a15fa..b32dfc6b570 100644 --- a/board/friendlyarm/nanopi2/board.c +++ b/board/friendlyarm/nanopi2/board.c @@ -11,6 +11,7 @@ #ifdef CONFIG_PWM_NX #include <pwm.h> #endif +#include <video.h> #include <asm/global_data.h> #include <asm/io.h> @@ -492,12 +493,8 @@ int splash_screen_prepare(void) ARRAY_SIZE(splash_locations)); } - if (!err) { - char addr[64]; - - sprintf(addr, "0x%lx", gd->fb_base); - env_set("fb_addr", addr); - } + if (!err) + env_set_hex("fb_addr", video_get_fb()); return err; } |
