diff options
author | Tom Rini <trini@konsulko.com> | 2023-03-13 15:36:52 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-03-13 15:36:52 -0400 |
commit | 2684aad483f57fba10c245cf56614880e9f4657e (patch) | |
tree | 50d264f36cd5417e9af5e3b7ed5800f34b8c1320 /arch/x86/lib/fsp/fsp_graphics.c | |
parent | bcf343146ff365a88481b9a80920ed146c6dee5b (diff) | |
parent | 61a621054194216eefc1a6f5af0a63aa265bbaef (diff) |
Merge tag 'efi-next-20230313' of https://source.denx.de/u-boot/custodians/u-boot-efi into next
Pull request efi-next-20230313
UEFI:
* Improve graphics support in EFI app
Others:
* x86: Add a few more items to bdinfo
* video: Remove duplicate cursor-positioning function
* video: Clear the vidconsole rather than the video
Diffstat (limited to 'arch/x86/lib/fsp/fsp_graphics.c')
-rw-r--r-- | arch/x86/lib/fsp/fsp_graphics.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/lib/fsp/fsp_graphics.c b/arch/x86/lib/fsp/fsp_graphics.c index b07c666caf7..2bcc49f6051 100644 --- a/arch/x86/lib/fsp/fsp_graphics.c +++ b/arch/x86/lib/fsp/fsp_graphics.c @@ -106,7 +106,7 @@ static int fsp_video_probe(struct udevice *dev) vesa->phys_base_ptr = dm_pci_read_bar32(dev, 2); gd->fb_base = vesa->phys_base_ptr; - ret = vesa_setup_video_priv(vesa, uc_priv, plat); + ret = vesa_setup_video_priv(vesa, vesa->phys_base_ptr, uc_priv, plat); if (ret) goto err; |