aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius Strobl <marius@FreeBSD.org>2014-12-28 21:36:20 +0000
committerMarius Strobl <marius@FreeBSD.org>2014-12-28 21:36:20 +0000
commit393677427cdd7d4fa1f7e3854606f507602302bb (patch)
tree0d73e4a9ecd07467e144bbc822c954632199453d
parent782feef3f378262468976e1707feb04b7c196b8a (diff)
downloadsrc-393677427cdd7d4fa1f7e3854606f507602302bb.tar.gz
src-393677427cdd7d4fa1f7e3854606f507602302bb.zip
Don't use a sub-device/-vendor wildcard for probing MCS9922 as other
chips with the same device and vendor IDs actually may provide different functionality. While at it, canonicalize the description to match other MosChip UARTs. PR: 186891 MFC after: 3 days
Notes
Notes: svn path=/head/; revision=276351
-rw-r--r--sys/dev/uart/uart_bus_pci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/uart/uart_bus_pci.c b/sys/dev/uart/uart_bus_pci.c
index 748d18afc78d..b16abf9a649f 100644
--- a/sys/dev/uart/uart_bus_pci.c
+++ b/sys/dev/uart/uart_bus_pci.c
@@ -137,8 +137,8 @@ static const struct pci_id pci_ns8250_ids[] = {
"MosChip MCS9901 PCIe to Peripheral Controller", 0x10 },
{ 0x9710, 0x9904, 0xa000, 0x1000,
"MosChip MCS9904 PCIe to Peripheral Controller", 0x10 },
-{ 0x9710, 0x9922, 0xffff, 0,
- "MosChip MCS9922 Multi I/O 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}
};