On Sun, 22 Jun 2008 19:53:18 -0700
David Brownell <david-b@pacbell.net> wrote:
NAK. It was discussed before repeatedly as you suspected and settled by
Linus ultimately.
Zero is not a valid IRQ in the kernel mapping of things. If you have a
physical IRQ 0 remap it. That way you can write the more natural
if (dev->irq)
setup_for_irq(dev);
else
poll(dev);
type stuff.
NO_IRQ was intentionally removed from various platforms and really wants
kicking out of some others.
Alan
--