diff options
author | Constantine A. Murenin <cnst@cvs.openbsd.org> | 2009-07-23 01:38:17 +0000 |
---|---|---|
committer | Constantine A. Murenin <cnst@cvs.openbsd.org> | 2009-07-23 01:38:17 +0000 |
commit | c1413165973f21c51d562f006520a707e613b442 (patch) | |
tree | 341ebf295eb17e7a5835f3aa57ddeaa5ad7e9061 /sys/dev/acpi/acpi.c | |
parent | f0a4fd8da0c18e97a5d075ec171327ab15723a00 (diff) |
New aibs(4) driver for ASUSTeK AI Booster (ACPI ATK0110) hardware monitoring,
with sensor state support through limits provided by the ACPI.
Tested on several ASUS motherboards kindly networked by Sam Fourman Jr.
ok deraadt marco jordan
Diffstat (limited to 'sys/dev/acpi/acpi.c')
-rw-r--r-- | sys/dev/acpi/acpi.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/acpi/acpi.c b/sys/dev/acpi/acpi.c index 86eb1722072..45d49b9ff66 100644 --- a/sys/dev/acpi/acpi.c +++ b/sys/dev/acpi/acpi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acpi.c,v 1.140 2009/06/03 07:13:48 pirofti Exp $ */ +/* $OpenBSD: acpi.c,v 1.141 2009/07/23 01:38:16 cnst Exp $ */ /* * Copyright (c) 2005 Thorsten Lockert <tholo@sigmasoft.com> * Copyright (c) 2005 Jordan Hargrave <jordan@openbsd.org> @@ -2244,7 +2244,8 @@ acpi_foundhid(struct aml_node *node, void *arg) else if (!strcmp(dev, ACPI_DEV_THINKPAD)) { aaa.aaa_name = "acpithinkpad"; acpi_thinkpad_enabled = 1; - } + } else if (!strcmp(dev, ACPI_DEV_ASUSAIBOOSTER)) + aaa.aaa_name = "aibs"; if (aaa.aaa_name) config_found(self, &aaa, acpi_print); |