Date: Sat, 25 Jul 2026 15:34:31 +0000 From: ShengYi Hung <aokblast@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: 3ebb70fcf91e - stable/15 - stand: Fix build failure due to old EDK2 interface Message-ID: <6a64d787.3bc72.42f530e5@gitrepo.freebsd.org>
index | next in thread | raw e-mail
The branch stable/15 has been updated by aokblast: URL: https://cgit.FreeBSD.org/src/commit/?id=3ebb70fcf91e50ef1caee178b991f709216ff9f4 commit 3ebb70fcf91e50ef1caee178b991f709216ff9f4 Author: ShengYi Hung <aokblast@FreeBSD.org> AuthorDate: 2026-07-25 15:27:50 +0000 Commit: ShengYi Hung <aokblast@FreeBSD.org> CommitDate: 2026-07-25 15:27:50 +0000 stand: Fix build failure due to old EDK2 interface In 43b8edb320519, we change EFI_GRAPHICS_OUTPUT_PROTOCOL from EFI_GRAPHICS_OUTPUT. However, this patch is not MFC to stable/15. As a result, we need to use the old interface to prevent compile failure. Fixes: 1802f2ca7215 Sponsored by: The FreeBSD Foundation --- stand/common/gfx_fb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stand/common/gfx_fb.c b/stand/common/gfx_fb.c index 9db7d26a0dd1..3e002e512a2c 100644 --- a/stand/common/gfx_fb.c +++ b/stand/common/gfx_fb.c @@ -1103,7 +1103,7 @@ gfx_fb_flush(void) #if defined(EFI) if (gfx_state.tg_fb_type == FB_GOP && !ignore_gop_blt && boot_services_active) { - EFI_GRAPHICS_OUTPUT_PROTOCOL *gop = gfx_state.tg_private; + EFI_GRAPHICS_OUTPUT *gop = gfx_state.tg_private; EFI_TPL tpl; assert(gop != NULL);home | help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?6a64d787.3bc72.42f530e5>
