diff options
author | Ian Lepore <ian@FreeBSD.org> | 2017-03-16 03:49:06 +0000 |
---|---|---|
committer | Ian Lepore <ian@FreeBSD.org> | 2017-03-16 03:49:06 +0000 |
commit | 0b1366961505b0fab5ade89f90f601df06b3df35 (patch) | |
tree | 54f4d1eadbfdf16f0fc667a86df241a51a5996fa | |
parent | d457fbf3f1e7665fd4bc8dbcb1c8211b0fc34560 (diff) |
Notes
-rw-r--r-- | sys/dev/uart/uart_bus_acpi.c | 1 | ||||
-rw-r--r-- | sys/dev/uart/uart_bus_isa.c | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/uart/uart_bus_acpi.c b/sys/dev/uart/uart_bus_acpi.c index ccd213da415e..018e6b91d736 100644 --- a/sys/dev/uart/uart_bus_acpi.c +++ b/sys/dev/uart/uart_bus_acpi.c @@ -64,6 +64,7 @@ static struct isa_pnp_id acpi_ns8250_ids[] = { {0x1005d041, "Generic IRDA-compatible device"}, /* PNP0510 */ {0x1105d041, "Generic IRDA-compatible device"}, /* PNP0511 */ {0x04f0235c, "Wacom Tablet PC Screen"}, /* WACF004 */ + {0x0ef0235c, "Wacom Tablet PC Screen 00e"}, /* WACF00e */ {0xe502aa1a, "Wacom Tablet at FuS Lifebook T"}, /* FUJ02E5 */ {0} }; diff --git a/sys/dev/uart/uart_bus_isa.c b/sys/dev/uart/uart_bus_isa.c index 1fda15f2be02..af9b0f10a39b 100644 --- a/sys/dev/uart/uart_bus_isa.c +++ b/sys/dev/uart/uart_bus_isa.c @@ -142,7 +142,8 @@ static struct isa_pnp_id isa_ns8250_ids[] = { {0x90307256, NULL}, /* USR3090 - USR ? */ {0x70917256, NULL}, /* USR9170 - U.S. Robotics 56K FAX INT */ {0x90917256, NULL}, /* USR9190 - USR 56k Voice INT */ - {0x04f0235c, NULL}, /* WACF004 - Wacom Tablet PC Screen*/ + {0x04f0235c, NULL}, /* WACF004 - Wacom Tablet PC Screen */ + {0x0ef0235c, NULL}, /* WACF00e - Wacom Tablet PC Screen 00e */ {0x0300695c, NULL}, /* WCI0003 - Fax/Voice/Modem/Speakphone/Asvd */ {0x01a0896a, NULL}, /* ZTIA001 - Zoom Internal V90 Faxmodem */ {0x61f7896a, NULL}, /* ZTIF761 - Zoom ComStar 33.6 */ |