Date: Wed, 8 Mar 2017 20:41:27 +0000 (UTC) From: Ian Lepore <ian@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r314918 - head/sys/dev/uart Message-ID: <201703082041.v28KfRiM041840@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ian Date: Wed Mar 8 20:41:27 2017 New Revision: 314918 URL: https://svnweb.freebsd.org/changeset/base/314918 Log: Add the pnp id for a Wacom 'WACF00e' tablet. PR: 217306 Submitted by: large.hadron.collider@gmx.com Modified: head/sys/dev/uart/uart_bus_acpi.c head/sys/dev/uart/uart_bus_isa.c Modified: head/sys/dev/uart/uart_bus_acpi.c ============================================================================== --- head/sys/dev/uart/uart_bus_acpi.c Wed Mar 8 18:53:32 2017 (r314917) +++ head/sys/dev/uart/uart_bus_acpi.c Wed Mar 8 20:41:27 2017 (r314918) @@ -72,6 +72,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} }; Modified: head/sys/dev/uart/uart_bus_isa.c ============================================================================== --- head/sys/dev/uart/uart_bus_isa.c Wed Mar 8 18:53:32 2017 (r314917) +++ head/sys/dev/uart/uart_bus_isa.c Wed Mar 8 20:41:27 2017 (r314918) @@ -143,6 +143,7 @@ static struct isa_pnp_id isa_ns8250_ids[ {0x70917256, NULL}, /* USR9170 - U.S. Robotics 56K FAX INT */ {0x90917256, NULL}, /* USR9190 - USR 56k Voice INT */ {0x04f0235c, NULL}, /* WACF004 - Wacom Tablet PC Screen*/ + {0x0ef0235c, NULL}, /* WACF004 - Wacom Tablet PC Screen*/ {0x0300695c, NULL}, /* WCI0003 - Fax/Voice/Modem/Speakphone/Asvd */ {0x01a0896a, NULL}, /* ZTIA001 - Zoom Internal V90 Faxmodem */ {0x61f7896a, NULL}, /* ZTIF761 - Zoom ComStar 33.6 */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201703082041.v28KfRiM041840>