]> git.baikalelectronics.ru Git - kernel.git/commit
x86, efi: Fix display detection in EFI boot stub
authorDavid Woodhouse <David.Woodhouse@intel.com>
Mon, 7 Jan 2013 21:52:16 +0000 (21:52 +0000)
committerH. Peter Anvin <hpa@linux.intel.com>
Mon, 28 Jan 2013 04:19:37 +0000 (20:19 -0800)
commita945bba53fed3300ddf3cfbb17249a1b947f21fb
tree323d8639cec09ff34ad3261176dfd8df9481aa6e
parentfba5e5ba7f3a26f0c0e302b354f78abfa6003c92
x86, efi: Fix display detection in EFI boot stub

When booting under OVMF we have precisely one GOP device, and it
implements the ConOut protocol.

We break out of the loop when we look at it... and then promptly abort
because 'first_gop' never gets set. We should set first_gop *before*
breaking out of the loop. Yes, it doesn't really mean "first" any more,
but that doesn't matter. It's only a flag to indicate that a suitable
GOP was found.

In fact, we'd do just as well to initialise 'width' to zero in this
function, then just check *that* instead of first_gop. But I'll do the
minimal fix for now (and for stable@).

Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Cc: <stable@kernel.org>
Link: http://lkml.kernel.org/r/1358513837.2397.247.camel@shinybook.infradead.org
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Cc: Matt Fleming <matt.fleming@intel.com>
arch/x86/boot/compressed/eboot.c