Commit 1d37db77 authored by Vernon Mauery's avatar Vernon Mauery Committed by Matthew Garrett

ibm_rtl: _RTL_ is not available in UEFI mode

Some of the IBM servers that are supported by ibm_rtl
can run in both Legacy mode (BIOS) and in UEFI mode.
When running in UEFI mode, it is possible that the
EBDA table exists but cannot be mapped and reports
errors.  We need to make sure that by default we don't
try to probe the machines if they are running in UEFI
mode.
Signed-off-by: default avatarVernon Mauery <vernux@us.ibm.com>
Signed-off-by: default avatarMatthew Garrett <mjg@redhat.com>
parent a2262260
...@@ -28,6 +28,7 @@ ...@@ -28,6 +28,7 @@
#include <linux/io.h> #include <linux/io.h>
#include <linux/sysdev.h> #include <linux/sysdev.h>
#include <linux/dmi.h> #include <linux/dmi.h>
#include <linux/efi.h>
#include <linux/mutex.h> #include <linux/mutex.h>
#include <asm/bios_ebda.h> #include <asm/bios_ebda.h>
...@@ -238,7 +239,7 @@ static int __init ibm_rtl_init(void) { ...@@ -238,7 +239,7 @@ static int __init ibm_rtl_init(void) {
if (force) if (force)
pr_warning("ibm-rtl: module loaded by force\n"); pr_warning("ibm-rtl: module loaded by force\n");
/* first ensure that we are running on IBM HW */ /* first ensure that we are running on IBM HW */
else if (!dmi_check_system(ibm_rtl_dmi_table)) else if (efi_enabled || !dmi_check_system(ibm_rtl_dmi_table))
return -ENODEV; return -ENODEV;
/* Get the address for the Extended BIOS Data Area */ /* Get the address for the Extended BIOS Data Area */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment