svn commit: r201667 - stable/8/sys/dev/uart

Gavin Atkinson gavin at FreeBSD.org
Wed Jan 6 20:40:42 UTC 2010


Author: gavin
Date: Wed Jan  6 20:40:41 2010
New Revision: 201667
URL: http://svn.freebsd.org/changeset/base/201667

Log:
  MFC r200820:
  
    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, implicit)

Modified:
  stable/8/sys/dev/uart/uart_bus_acpi.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/xen/xenpci/   (props changed)

Modified: stable/8/sys/dev/uart/uart_bus_acpi.c
==============================================================================
--- stable/8/sys/dev/uart/uart_bus_acpi.c	Wed Jan  6 20:39:57 2010	(r201666)
+++ stable/8/sys/dev/uart/uart_bus_acpi.c	Wed Jan  6 20:40:41 2010	(r201667)
@@ -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}
 };
 


More information about the svn-src-all mailing list