[PARISC] Fix Cirrus 6832 Cardbus on RDI Tadpole PARISC Laptop

Fix irq-off-by-one for Cirrus 6832 Cardbus on RDI Tadpole PARISC Laptop.
We just DECLARE_PCI_FIXUP_ENABLE as it is unlikely that this will be
found in any other parisc system.

Signed-off-by: Helge Deller <deller@parisc-linux.org>
Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>

authored by

Helge Deller and committed by
Kyle McMartin
04d35d73 1b2425e3

+15
+15
drivers/parisc/dino.c
··· 435 435 dino_assign_irq(dino, irq, &dev->irq); 436 436 } 437 437 438 + 439 + /* 440 + * Cirrus 6832 Cardbus reports wrong irq on RDI Tadpole PARISC Laptop (deller@gmx.de) 441 + * (the irqs are off-by-one, not sure yet if this is a cirrus, dino-hardware or dino-driver problem...) 442 + */ 443 + static void __devinit quirk_cirrus_cardbus(struct pci_dev *dev) 444 + { 445 + u8 new_irq = dev->irq - 1; 446 + printk(KERN_INFO "PCI: Cirrus Cardbus IRQ fixup for %s, from %d to %d\n", 447 + pci_name(dev), dev->irq, new_irq); 448 + dev->irq = new_irq; 449 + } 450 + DECLARE_PCI_FIXUP_ENABLE(PCI_VENDOR_ID_CIRRUS, PCI_DEVICE_ID_CIRRUS_6832, quirk_cirrus_cardbus ); 451 + 452 + 438 453 static void __init 439 454 dino_bios_init(void) 440 455 {