On Wed, 2005-02-23 at 15:46 -0800, Roland Dreier wrote:
> Alan> pci_read_config_byte(dev, PCI_INTERRUPT_LINE,
> &softp->interrupt_line);
> Alan> request_irq(softp->interrupt_line, sseintr, SA_INTERRUPT,
> "sse", softp);
>
> Don't do that. The kernel may need you to use a different interrupt
> number than you read from the PCI config header. Use dev->irq, as in
>
> request_irq(dev->irq, sseintr, SA_SHIRQ | SA_INTERRUPT, "sse", softp);
Roland,
You are the best. Thank you so much for this information.
That was the ticket.
request_irq(dev->irq, sseintr, SA_SHIRQ | SA_INTERRUPT,
"sse", softp);
It works on all machines now without adding "pci=noapci"
I'm running again!!!
-Alan
--
- Alan Kilian <kilian(at)bobodyne.com>
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/