> Only problem is I don't have DMI Product names for all involved models.
> That's why I left pretty general:
> MATCH(DMI_PRODUCT_NAME, "PCG-")
My Z505JE works perfectly without it. In general Z505's are
known to work.
> + /* Work around broken Sony Vaio Notebooks which assign USB to
> + * IRQ 10 even though it is actually wired to IRQ 9
> + * Send comments to: Jan Slupski, jslupski@email.com
> + */
> +
> + if (broken_sony_vaio_bios_irq10 && pirq == 0x63 && dev->irq == 9 &&
> + dev->vendor == 0x8086 && dev->device == 0x2442){
> + dev->irq = 9;
> + pci_write_config_byte(dev, PCI_INTERRUPT_LINE, 9);
> + r->set(pirq_router_dev, dev, pirq, 9);
> + }
So...
if (dev->irq == 9) {
dev->irq = 9;
}
Are you sure it's right?
-- Pete
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/