On Wed, Jul 22, 2015 at 01:13:27PM -0400, Peter Jones wrote: > BGRT can legitimately be a different version from what we support, and > that's a problem with the driver not supporting something, not an error > that needs to be surfaced to the user. > > Signed-off-by: Peter Jones <pjones@xxxxxxxxxx> As mentioned in my previous mail, please consider adding support for version 0 instead, which would fix this issue in a better way. If that's not possible, then sure, this patch is fine. But ideally this warning should tend to lead to a patch to the bgrt driver adding support for the new version (or in this case the old version), rather than just silencing the warning. > arch/x86/platform/efi/efi-bgrt.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/arch/x86/platform/efi/efi-bgrt.c b/arch/x86/platform/efi/efi-bgrt.c > index d7f997f..e369162 100644 > --- a/arch/x86/platform/efi/efi-bgrt.c > +++ b/arch/x86/platform/efi/efi-bgrt.c > @@ -46,7 +46,7 @@ void __init efi_bgrt_init(void) > return; > } > if (bgrt_tab->version != 1) { > - pr_err("Ignoring BGRT: invalid version %u (expected 1)\n", > + pr_notice("Ignoring BGRT: invalid version %u (expected 1)\n", > bgrt_tab->version); > return; > } > -- > 2.4.3 > -- To unsubscribe from this list: send the line "unsubscribe linux-efi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html