diff options
author | gavin <gavin@FreeBSD.org> | 2009-12-21 22:57:40 +0000 |
---|---|---|
committer | gavin <gavin@FreeBSD.org> | 2009-12-21 22:57:40 +0000 |
commit | 42c62812debad35708a667b97cac5e79698581e9 (patch) | |
tree | 2a972ce3758d358c6ab09b1c680d998075938998 /sys/dev/uart/uart_bus_acpi.c | |
parent | ff11c95c02875da75a253540063bc31a2d7b99b9 (diff) | |
download | FreeBSD-src-42c62812debad35708a667b97cac5e79698581e9.zip FreeBSD-src-42c62812debad35708a667b97cac5e79698581e9.tar.gz |
Support the tablet in (at least) the Toshiba Portege M200 Tablet PC.
This device only appears on the ACPI bus, so isn't caught by the current
entry for it in the uart(4) ISA attachment.
PR: kern/140172
Reviewed by: jhb, marcel
Approved by: ed (mentor)
MFC after: 2 weeks
Diffstat (limited to 'sys/dev/uart/uart_bus_acpi.c')
-rw-r--r-- | sys/dev/uart/uart_bus_acpi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/dev/uart/uart_bus_acpi.c b/sys/dev/uart/uart_bus_acpi.c index 042dfef..d320b73 100644 --- a/sys/dev/uart/uart_bus_acpi.c +++ b/sys/dev/uart/uart_bus_acpi.c @@ -59,6 +59,7 @@ static driver_t uart_acpi_driver = { static struct isa_pnp_id acpi_ns8250_ids[] = { {0x0005d041, "Standard PC COM port"}, /* PNP0500 */ {0x0105d041, "16550A-compatible COM port"}, /* PNP0501 */ + {0x04f0235c, "Wacom Tablet PC Screen"}, /* WACF004 */ {0} }; |