From 58ceb00ea7a76040f9e4cada7073ee68a3b4455d Mon Sep 17 00:00:00 2001 From: Kyösti Mälkki Date: Fri, 20 Jun 2014 06:21:01 +0300 Subject: PCI VGA ROM: Use acpi_is_wakeup_s3() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I6f9c992f1a68025ed18de57c5856b3bf9a673bfb Signed-off-by: Kyösti Mälkki Reviewed-on: http://review.coreboot.org/6075 Tested-by: build bot (Jenkins) Reviewed-by: Edward O'Callaghan Reviewed-by: Patrick Georgi --- src/device/pci_device.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'src/device') diff --git a/src/device/pci_device.c b/src/device/pci_device.c index 3a54c2d5c8..f262586232 100644 --- a/src/device/pci_device.c +++ b/src/device/pci_device.c @@ -30,6 +30,7 @@ #include #include #include +#include #include #include #include @@ -53,9 +54,6 @@ #if CONFIG_PC80_SYSTEM #include #endif -#if CONFIG_HAVE_ACPI_RESUME && !CONFIG_S3_VGA_ROM_RUN -#include -#endif #if CONFIG_CHROMEOS #include #endif @@ -687,14 +685,12 @@ static int should_run_oprom(struct device *dev) static int should_load_oprom(struct device *dev) { -#if CONFIG_HAVE_ACPI_RESUME && !CONFIG_S3_VGA_ROM_RUN /* If S3_VGA_ROM_RUN is disabled, skip running VGA option * ROMs when coming out of an S3 resume. */ - if ((acpi_slp_type == 3) && + if (!IS_ENABLED(CONFIG_S3_VGA_ROM_RUN) && acpi_is_wakeup_s3() && ((dev->class >> 8) == PCI_CLASS_DISPLAY_VGA)) return 0; -#endif if (IS_ENABLED(CONFIG_ALWAYS_LOAD_OPROM)) return 1; if (should_run_oprom(dev)) -- cgit v1.2.3