diff options
author | philip <philip@FreeBSD.org> | 2006-04-09 15:22:25 +0000 |
---|---|---|
committer | philip <philip@FreeBSD.org> | 2006-04-09 15:22:25 +0000 |
commit | 9668c15c6515c28d2e7e9c531a4fc62c380b7872 (patch) | |
tree | f8aaeea7ba6439af3d10ddf0349eac3ed57bfcc4 /sys | |
parent | ee99301b07fc59b895daeb9dacac51cc6056dc8b (diff) | |
download | FreeBSD-src-9668c15c6515c28d2e7e9c531a4fc62c380b7872.zip FreeBSD-src-9668c15c6515c28d2e7e9c531a4fc62c380b7872.tar.gz |
Add support for Asus W5A laptops.
Submitted by: Pavel Martynenko <mpv -at- ip.net.ua>
X-MFC after: 3 days (or so)
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/acpi_support/acpi_asus.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sys/dev/acpi_support/acpi_asus.c b/sys/dev/acpi_support/acpi_asus.c index 472dbe7..6703bc8 100644 --- a/sys/dev/acpi_support/acpi_asus.c +++ b/sys/dev/acpi_support/acpi_asus.c @@ -311,6 +311,16 @@ static struct acpi_asus_model acpi_asus_models[] = { .disp_get = "\\_SB.PCI0.P0P1.VGA.GETD", .disp_set = "SDSP" }, + { + .name = "W5A", + .bled_set = "BLED", + .lcd_get = "\\BKLT", + .lcd_set = "\\_SB.PCI0.SBRG.EC0._Q10", + .brn_get = "GPLV", + .brn_set = "SPLV", + .disp_get = "\\_SB.PCI0.P0P2.VGA.GETD", + .disp_set = "SDSP" + }, { .name = NULL } }; |