diff options
author | joshua stein <jcs@cvs.openbsd.org> | 2011-04-27 20:55:43 +0000 |
---|---|---|
committer | joshua stein <jcs@cvs.openbsd.org> | 2011-04-27 20:55:43 +0000 |
commit | 6c680bdf200957b0ebc81425047938eed9603414 (patch) | |
tree | 43dee512aea03a01aebadeb7325a7d8f4211f864 /sys/dev/acpi/acpithinkpad.c | |
parent | afd0ae0ac1d03cfa4946dcd6fae7fbdba9a25b11 (diff) |
attach acpithinkpad to newer lenovo models like the x120e
ok deraadt@
Diffstat (limited to 'sys/dev/acpi/acpithinkpad.c')
-rw-r--r-- | sys/dev/acpi/acpithinkpad.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/acpi/acpithinkpad.c b/sys/dev/acpi/acpithinkpad.c index 8e7d2173499..73525695bf8 100644 --- a/sys/dev/acpi/acpithinkpad.c +++ b/sys/dev/acpi/acpithinkpad.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acpithinkpad.c,v 1.25 2011/01/02 04:56:57 jordan Exp $ */ +/* $OpenBSD: acpithinkpad.c,v 1.26 2011/04/27 20:55:42 jcs Exp $ */ /* * Copyright (c) 2008 joshua stein <jcs@openbsd.org> * @@ -114,7 +114,9 @@ struct cfdriver acpithinkpad_cd = { NULL, "acpithinkpad", DV_DULL }; -const char *acpithinkpad_hids[] = { ACPI_DEV_THINKPAD, 0 }; +const char *acpithinkpad_hids[] = { + ACPI_DEV_IBM, ACPI_DEV_LENOVO, 0 +}; int thinkpad_match(struct device *parent, void *match, void *aux) |