From: kettenis Date: Sat, 25 Aug 2018 18:42:43 +0000 (+0000) Subject: Use __HAVE_ACPI to decide whether ACPI support should be considered. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=9943d3dff0fa937e0ea47f58c90d6d293eacf0b4;p=openbsd Use __HAVE_ACPI to decide whether ACPI support should be considered. ok deraadt@, krw@, jca@ --- diff --git a/sys/dev/pci/drm/drm_linux.c b/sys/dev/pci/drm/drm_linux.c index a414a2623a7..f71aab59c23 100644 --- a/sys/dev/pci/drm/drm_linux.c +++ b/sys/dev/pci/drm/drm_linux.c @@ -1,4 +1,4 @@ -/* $OpenBSD: drm_linux.c,v 1.30 2018/08/20 16:00:22 mpi Exp $ */ +/* $OpenBSD: drm_linux.c,v 1.31 2018/08/25 18:42:43 kettenis Exp $ */ /* * Copyright (c) 2013 Jonathan Gray * Copyright (c) 2015, 2016 Mark Kettenis @@ -729,7 +729,7 @@ vga_put(struct pci_dev *pdev, int rsrc) * ACPI types and interfaces. */ -#if defined(__amd64__) || defined(__i386__) +#ifdef __HAVE_ACPI #include "acpi.h" #endif diff --git a/sys/dev/pci/drm/radeon/radeon_bios.c b/sys/dev/pci/drm/radeon/radeon_bios.c index 370322c27b9..c35485b6b8b 100644 --- a/sys/dev/pci/drm/radeon/radeon_bios.c +++ b/sys/dev/pci/drm/radeon/radeon_bios.c @@ -33,13 +33,16 @@ #if defined(__amd64__) || defined(__i386__) #include #include -#include "acpi.h" #endif #if defined (__loongson__) #include #endif +#ifdef __HAVE_ACPI +#include "acpi.h" +#endif + /* * BIOS. */