summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorjmcneill <jmcneill@NetBSD.org>2018-10-21 13:41:15 +0000
committerjmcneill <jmcneill@NetBSD.org>2018-10-21 13:41:15 +0000
commit1247ce562fd3a778ced2318b66d9f28f04b8ef4f (patch)
treec8610d9107334f5e348c6b827ce751e5deb2a6e1 /sys/dev
parent4059b37bb6c3cf0b3d4435b728a8cd63b346b7b8 (diff)
Add ACPI PCI link devices to ignored ids on arm64
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/acpi/acpi.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/acpi/acpi.c b/sys/dev/acpi/acpi.c
index bd609a90006..5a4cfdf30a5 100644
--- a/sys/dev/acpi/acpi.c
+++ b/sys/dev/acpi/acpi.c
@@ -1,4 +1,4 @@
-/* $NetBSD: acpi.c,v 1.277 2018/10/16 22:29:43 jmcneill Exp $ */
+/* $NetBSD: acpi.c,v 1.278 2018/10/21 13:41:15 jmcneill Exp $ */
/*-
* Copyright (c) 2003, 2007 The NetBSD Foundation, Inc.
@@ -100,7 +100,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: acpi.c,v 1.277 2018/10/16 22:29:43 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: acpi.c,v 1.278 2018/10/21 13:41:15 jmcneill Exp $");
#include "pci.h"
#include "opt_acpi.h"
@@ -176,6 +176,7 @@ static const char * const acpi_ignored_ids[] = {
#endif
#if defined(__aarch64__)
"ACPI0007", /* ACPI CPUs are attached via MADT GICC subtables */
+ "PNP0C0F", /* ACPI PCI link devices are handled internally */
#endif
NULL
};