Skip to content

Commit c525c5d

Browse files
Jay Dolangregkh
authored andcommitted
serial: 8250_pci: Fix ACCES entries in pci_serial_quirks array
Fix error in table for PCI_DEVICE_ID_ACCESIO_PCIE_ICM_4S that caused it and PCI_DEVICE_ID_ACCESIO_PCIE_ICM232_4 to be missing their fourth port. Fixes: 78d3820 ("serial: 8250_pci: Have ACCES cards that use the four port Pericom PI7C9X7954 chip use the pci_pericom_setup()") Cc: stable <[email protected]> Signed-off-by: Jay Dolan <[email protected]> Signed-off-by: Andy Shevchenko <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent f85e045 commit c525c5d

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

drivers/tty/serial/8250/8250_pci.c

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2291,12 +2291,19 @@ static struct pci_serial_quirk pci_serial_quirks[] = {
22912291
.setup = pci_pericom_setup_four_at_eight,
22922292
},
22932293
{
2294-
.vendor = PCI_DEVICE_ID_ACCESIO_PCIE_ICM_4S,
2294+
.vendor = PCI_VENDOR_ID_ACCESIO,
22952295
.device = PCI_DEVICE_ID_ACCESIO_PCIE_ICM232_4,
22962296
.subvendor = PCI_ANY_ID,
22972297
.subdevice = PCI_ANY_ID,
22982298
.setup = pci_pericom_setup_four_at_eight,
22992299
},
2300+
{
2301+
.vendor = PCI_VENDOR_ID_ACCESIO,
2302+
.device = PCI_DEVICE_ID_ACCESIO_PCIE_ICM_4S,
2303+
.subvendor = PCI_ANY_ID,
2304+
.subdevice = PCI_ANY_ID,
2305+
.setup = pci_pericom_setup_four_at_eight,
2306+
},
23002307
{
23012308
.vendor = PCI_VENDOR_ID_ACCESIO,
23022309
.device = PCI_DEVICE_ID_ACCESIO_MPCIE_ICM232_4,

0 commit comments

Comments
 (0)