diff options
author | Karthikeyan Ramasubramanian <kramasub@google.com> | 2020-01-09 11:32:16 -0700 |
---|---|---|
committer | Patrick Rudolph <siro@das-labor.org> | 2020-01-12 18:12:14 +0000 |
commit | 0e971e11a03afc6a983445c63737e9aae4c97840 (patch) | |
tree | c29c1323f34debd24c7e1d092f6d09f61cebe745 /src/soc/intel/common/block/graphics/graphics.c | |
parent | b71fb5282eaeccc1b35cc0ace6260c7beaa15d0d (diff) |
soc/intel: Fix ACPI device operations initialization
Initialize ACPI device operations only when CONFIG_HAVE_ACPI_TABLES is
enabled.
BUG=None
TEST=Build Test
Change-Id: I5c5266885d8b08338d17a87bb95110765882120e
Signed-off-by: Karthikeyan Ramasubramanian <kramasub@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/38309
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
Reviewed-by: Furquan Shaikh <furquan@google.com>
Diffstat (limited to 'src/soc/intel/common/block/graphics/graphics.c')
-rw-r--r-- | src/soc/intel/common/block/graphics/graphics.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/soc/intel/common/block/graphics/graphics.c b/src/soc/intel/common/block/graphics/graphics.c index 90931ebd4c..98730590e1 100644 --- a/src/soc/intel/common/block/graphics/graphics.c +++ b/src/soc/intel/common/block/graphics/graphics.c @@ -117,7 +117,9 @@ static const struct device_operations graphics_ops = { .enable_resources = pci_dev_enable_resources, .init = graphics_soc_init, .ops_pci = &pci_dev_ops_pci, +#if CONFIG(HAVE_ACPI_TABLES) .write_acpi_tables = graphics_soc_write_acpi_opregion, +#endif .scan_bus = scan_generic_bus, }; |