diff options
author | Simon Glass <sjg@chromium.org> | 2024-08-21 10:19:01 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-08-26 14:05:38 -0600 |
commit | 3430a62568e7d92d673f15036e5963acb24bb15f (patch) | |
tree | 3ff51278414398ac997499e80dcf9409435e9851 | |
parent | 3876abbbfc2715d148b46de10c0827eb2cd387f7 (diff) |
video: Avoid setting global_data fb_base from SPL handoff
This field is not used, so don't set it.
Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | drivers/video/video-uclass.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/video/video-uclass.c b/drivers/video/video-uclass.c index e358a7949e0..ef780a6730c 100644 --- a/drivers/video/video-uclass.c +++ b/drivers/video/video-uclass.c @@ -224,7 +224,6 @@ int video_reserve_from_bloblist(struct video_handoff *ho) return -ENOENT; gd->video_bottom = ho->fb; - gd->fb_base = ho->fb; gd->video_top = ho->fb + ho->size; debug("%s: Reserving %lx bytes at %08x as per bloblist received\n", __func__, (unsigned long)ho->size, (u32)ho->fb); |