mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-13 23:34:05 +08:00
ACPI: fix acpi_hest_firmware_first_pci() caused oops
acpi_hest_firmware_first_pci() could be called when acpi is disabled and cause system oops. Signed-off-by: Shaohua Li <shaohua.li@intel.com> Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
parent
97c227cb51
commit
4bdae98f1a
@ -123,6 +123,10 @@ int acpi_hest_firmware_first_pci(struct pci_dev *pci)
|
||||
{
|
||||
acpi_status status = AE_NOT_FOUND;
|
||||
struct acpi_table_header *hest = NULL;
|
||||
|
||||
if (acpi_disabled)
|
||||
return 0;
|
||||
|
||||
status = acpi_get_table(ACPI_SIG_HEST, 1, &hest);
|
||||
|
||||
if (ACPI_SUCCESS(status)) {
|
||||
|
Loading…
Reference in New Issue
Block a user