Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 11 Nov 2012 04:07:10 +0000 (UTC)
From:      Eitan Adler <eadler@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org
Subject:   svn commit: r242885 - stable/7/sys/dev/uart
Message-ID:  <201211110407.qAB47ABa087169@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: eadler
Date: Sun Nov 11 04:07:10 2012
New Revision: 242885
URL: http://svnweb.freebsd.org/changeset/base/242885

Log:
  MFC r242583:
  Add support for a few more devices:
  
  	PNP0510 and FUJ02E5 for a  "Wacom Tablet at FuS Lifebook T"
  	PNP0502 and PNP0511 for some other generic devices.
  
  PR:		kern/173357
  Approved by:	cperciva (implicit)

Modified:
  stable/7/sys/dev/uart/uart_bus_acpi.c
Directory Properties:
  stable/7/sys/   (props changed)

Modified: stable/7/sys/dev/uart/uart_bus_acpi.c
==============================================================================
--- stable/7/sys/dev/uart/uart_bus_acpi.c	Sun Nov 11 04:07:09 2012	(r242884)
+++ stable/7/sys/dev/uart/uart_bus_acpi.c	Sun Nov 11 04:07:10 2012	(r242885)
@@ -59,7 +59,11 @@ 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 */
+	{0x0205d041, "Multiport serial device (non-intelligent 16550)"}, /* PNP0502 */
+	{0x1005d041, "Generic IRDA-compatible device"},	/* PNP0510 */
+	{0x1105d041, "Generic IRDA-compatible device"},	/* PNP0511 */
 	{0x04f0235c, "Wacom Tablet PC Screen"},		/* WACF004 */
+	{0xe502aa1a, "Wacom Tablet at FuS Lifebook T"},	/* FUJ02E5 */
 	{0}
 };
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201211110407.qAB47ABa087169>