diff options
| author | christos <christos@NetBSD.org> | 2003-10-02 16:05:33 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2003-10-02 16:05:33 +0000 |
| commit | 7e494b3ce823b19385bddd7bc0a115585e4dc59b (patch) | |
| tree | 17a0ba0ed1c590dcdc36b768df423bf37c9eb7e3 /sys/dev | |
| parent | 2d5deed2289dd542cd1ffb226d53ec2d856f1a84 (diff) | |
Add a Quirk for my Appro, where it does not find all its busses in ACPI
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/acpi/acpi_quirks.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sys/dev/acpi/acpi_quirks.c b/sys/dev/acpi/acpi_quirks.c index f7b785ae877..5fd6b6ff0b2 100644 --- a/sys/dev/acpi/acpi_quirks.c +++ b/sys/dev/acpi/acpi_quirks.c @@ -1,4 +1,4 @@ -/* $NetBSD: acpi_quirks.c,v 1.1 2003/05/15 21:29:50 fvdl Exp $ */ +/* $NetBSD: acpi_quirks.c,v 1.2 2003/10/02 16:05:33 christos Exp $ */ /* * Copyright 2002 Wasabi Systems, Inc. @@ -37,7 +37,7 @@ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: acpi_quirks.c,v 1.1 2003/05/15 21:29:50 fvdl Exp $"); +__KERNEL_RCSID(0, "$NetBSD: acpi_quirks.c,v 1.2 2003/10/02 16:05:33 christos Exp $"); #include "opt_acpi.h" @@ -60,6 +60,11 @@ static struct acpi_quirk acpi_quirks[] = { * that doesn't match reality at all (like on SuperMicro boards). */ { "PTLTD ", 0x06040000, ACPI_QUIRK_BADPCI | ACPI_QUIRK_BADIRQ }, + /* + * This is on my Appro 1224 Xi. It does not find all the busses + * in the ACPI tables. + */ + { "A M I ", 0x02000304, ACPI_QUIRK_BADPCI | ACPI_QUIRK_BADIRQ }, }; /* |
