https://github.com/torvalds/linux
Revision 56394ab8c26893bbaef02da04a06cc5ae71ccc5c authored by Matt Fleming on 11 September 2014, 08:04:25 UTC, committed by Matt Fleming on 24 September 2014, 11:46:59 UTC
A number of people are reporting seeing the "setup_efi_pci() failed!"
error message in what used to be a quiet boot,

  https://bugzilla.kernel.org/show_bug.cgi?id=81891

The message isn't all that helpful because setup_efi_pci() can return a
non-success error code for a variety of reasons, not all of them fatal.

Let's drop the return code from setup_efi_pci*() altogether, since
there's no way to process it in any meaningful way outside of the inner
__setup_efi_pci*() functions.

Reported-by: Darren Hart <dvhart@linux.intel.com>
Reported-by: Josh Boyer <jwboyer@fedoraproject.org>
Cc: Ulf Winkelvos <ulf@winkelvos.de>
Cc: Andre Müller <andre.muller@web.de>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Matt Fleming <matt.fleming@intel.com>
1 parent 84be880
Raw File
Tip revision: 56394ab8c26893bbaef02da04a06cc5ae71ccc5c authored by Matt Fleming on 11 September 2014, 08:04:25 UTC
x86/efi: Delete misleading efi_printk() error message
Tip revision: 56394ab
Kconfig
#
# For a description of the syntax of this configuration file,
# see Documentation/kbuild/kconfig-language.txt.
#
mainmenu "Linux/$ARCH $KERNELVERSION Kernel Configuration"

config SRCARCH
	string
	option env="SRCARCH"

source "arch/$SRCARCH/Kconfig"
back to top