aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Woithe <jwoithe@atrad.com.au>2013-10-31 01:13:40 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-12-08 20:16:05 -0500
commit6d4fa5bac71f7d83ba78d25a25df4c440a0ae69c (patch)
treed1eba21a78e508cff65c71fa333b8e24dcaaa4fc
parentd6a62b3b7eb1a000718f8ecac0c31eaa1e1f1187 (diff)
serial: 8250: Fix initialisation of Quatech cards with the AMCC PCI chip
Fix the initialisation of older Quatech serial cards which are fitted with the AMCC PCI Matchmaker interface chip. Signed-off-by: Jonathan Woithe (jwoithe@just42.net) Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/tty/serial/8250/8250_pci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/tty/serial/8250/8250_pci.c b/drivers/tty/serial/8250/8250_pci.c
index 4697a514b80a..6063d1512429 100644
--- a/drivers/tty/serial/8250/8250_pci.c
+++ b/drivers/tty/serial/8250/8250_pci.c
@@ -1259,10 +1259,10 @@ static int pci_quatech_init(struct pci_dev *dev)
1259 unsigned long base = pci_resource_start(dev, 0); 1259 unsigned long base = pci_resource_start(dev, 0);
1260 if (base) { 1260 if (base) {
1261 u32 tmp; 1261 u32 tmp;
1262 outl(inl(base + 0x38), base + 0x38); 1262 outl(inl(base + 0x38) | 0x00002000, base + 0x38);
1263 tmp = inl(base + 0x3c); 1263 tmp = inl(base + 0x3c);
1264 outl(tmp | 0x01000000, base + 0x3c); 1264 outl(tmp | 0x01000000, base + 0x3c);
1265 outl(tmp, base + 0x3c); 1265 outl(tmp &= ~0x01000000, base + 0x3c);
1266 } 1266 }
1267 } 1267 }
1268 return 0; 1268 return 0;