Module Name: src
Committed By: jruoho
Date: Wed Apr 28 17:52:17 UTC 2010
Modified Files:
src/sys/dev/acpi: acpi_quirks.c
Log Message:
Add ASUS CUV4X-D. From Pierre Pronchery in PR #41351.
To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/sys/dev/acpi/acpi_quirks.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/acpi/acpi_quirks.c
diff -u src/sys/dev/acpi/acpi_quirks.c:1.12 src/sys/dev/acpi/acpi_quirks.c:1.13
--- src/sys/dev/acpi/acpi_quirks.c:1.12 Mon Apr 12 18:55:27 2010
+++ src/sys/dev/acpi/acpi_quirks.c Wed Apr 28 17:52:17 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: acpi_quirks.c,v 1.12 2010/04/12 18:55:27 jruoho Exp $ */
+/* $NetBSD: acpi_quirks.c,v 1.13 2010/04/28 17:52:17 jruoho Exp $ */
/*
* Copyright 2002 Wasabi Systems, Inc.
@@ -37,7 +37,7 @@
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: acpi_quirks.c,v 1.12 2010/04/12 18:55:27 jruoho Exp $");
+__KERNEL_RCSID(0, "$NetBSD: acpi_quirks.c,v 1.13 2010/04/28 17:52:17 jruoho Exp $");
#include "opt_acpi.h"
@@ -56,13 +56,19 @@
static int acpi_rev_cmp(uint32_t, uint32_t, int);
/*
- * XXX add more
+ * XXX: Add more.
*/
static struct acpi_quirk acpi_quirks[] = {
+
+ { ACPI_SIG_FADT, "ASUS ", 0x30303031, AQ_LTE, "CUV4X-D ",
+ ACPI_QUIRK_BROKEN },
+
{ ACPI_SIG_FADT, "PTLTD ", 0x06040000, AQ_LTE, " FACP ",
ACPI_QUIRK_BROKEN },
+
{ ACPI_SIG_FADT, "NVIDIA", 0x06040000, AQ_EQ, "CK8 ",
ACPI_QUIRK_IRQ0 },
+
{ ACPI_SIG_FADT, "HP ", 0x06040012, AQ_LTE, "HWPC20F ",
ACPI_QUIRK_BROKEN },
};