From: Simon Glass Date: Wed, 21 Aug 2024 16:19:01 +0000 (-0600) Subject: video: Avoid setting global_data fb_base from SPL handoff X-Git-Url: http://git.dujemihanovic.xyz/%22http:/www.sics.se/static/git-favicon.png?a=commitdiff_plain;h=3430a62568e7d92d673f15036e5963acb24bb15f;p=u-boot.git 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 --- diff --git a/drivers/video/video-uclass.c b/drivers/video/video-uclass.c index e358a7949e..ef780a6730 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);