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

Eitan Adler eadler at FreeBSD.org
Mon Mar 30 08:48:37 UTC 2015


Author: eadler
Date: Mon Mar 30 08:48:35 2015
New Revision: 280843
URL: https://svnweb.freebsd.org/changeset/base/280843

Log:
  Add support for "MosChip MCS9922 PCIe to Peripheral Controller" to uart
  
  Submitted by:	<mlsemon35 at gmail.com>
  PR:		199013
  MFC After:	1 month

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

Modified: head/sys/dev/uart/uart_bus_pci.c
==============================================================================
--- head/sys/dev/uart/uart_bus_pci.c	Mon Mar 30 08:38:18 2015	(r280842)
+++ head/sys/dev/uart/uart_bus_pci.c	Mon Mar 30 08:48:35 2015	(r280843)
@@ -142,6 +142,8 @@ static const struct pci_id pci_ns8250_id
 	"MosChip MCS9904 PCIe to Peripheral Controller", 0x10 },
 { 0x9710, 0x9922, 0xa000, 0x1000,
 	"MosChip MCS9922 PCIe to Peripheral Controller", 0x10 },
+{ 0x9710, 0x9922, 0xa000, 0x1000,
+	"MosChip MCS9922 PCIe to Peripheral Controller", 0x10 },
 { 0xdeaf, 0x9051, 0xffff, 0, "Middle Digital PC Weasel Serial Port", 0x10 },
 { 0xffff, 0, 0xffff, 0, NULL, 0, 0}
 };


More information about the svn-src-all mailing list