this is the code you're hitting:
/* Register IRQ */
snprintf(itv->name, sizeof(itv->name)-1,
        "ivtv%d", itv->num);
retval = request_irq(itv->dev->irq, ivtv_irq_handler,
                     SA_SHIRQ | SA_INTERRUPT, 
                     itv->name, (void *)itv);
if (retval) {
  IVTV_KERN_ERR("Failed to register irq %d\n",
retval);
  goto free_i2c;
}

The system didn't let you register the IRQ. could be a
bad pci slot, could be an ACPI problem, could already
be registered to something else..

error -22 is -EINVAL:

from the request_irq manpage:

-EINVAL
        The IRQ number you requested was either invalid or
reserved, or you passed a NULL pointer for the
handler() parameter.

so you may need to move your card's irq somehow, could
move to a new pci slot, or turn of apci, or make sure
your bios knows it's not a PNP os.

-tmk

--- "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:

> I have had a couple of emails saying that my card
> should be supported.
> 
> Can anyone confirm this and/or give me a hand to
> sort out this troublesome issue?



-------------------------------------------------------
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almost....http://www.thinkgeek.com/sfshirt
_______________________________________________
ivtv-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ivtv-devel

Reply via email to