svn commit: r242583 - head/sys/dev/uart

Eitan Adler eadler at FreeBSD.org
Sun Nov 4 20:50:23 UTC 2012


Author: eadler
Date: Sun Nov  4 20:50:23 2012
New Revision: 242583
URL: http://svn.freebsd.org/changeset/base/242583

Log:
  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
  Submitted by:	Andrey Zakharchenko <avz at jscc.ru>
  Approved by:	cperciva (implicit)
  MFC after:	1 week

Modified:
  head/sys/dev/uart/uart_bus_acpi.c

Modified: head/sys/dev/uart/uart_bus_acpi.c
==============================================================================
--- head/sys/dev/uart/uart_bus_acpi.c	Sun Nov  4 20:48:26 2012	(r242582)
+++ head/sys/dev/uart/uart_bus_acpi.c	Sun Nov  4 20:50:23 2012	(r242583)
@@ -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}
 };
 


More information about the svn-src-all mailing list