Hooking an IRQ on a modified mpc8349emitx board

2008-09-03 Thread Oscar Takeshita
Hi, I've been trying to hook an IRQ on a modified mpc8349emitx board without success. The IRQ is hooked physically to IRQ1/GPIO2[13] on the mpc8349e. No other devices are tied to this pin. I'm using uboot 1.2.0 and kernel 2.6.22.19. Do I need to have a dts entry for this interrupt in order

Re: Hooking an IRQ on a modified mpc8349emitx board

2008-09-04 Thread Oscar Takeshita
mydevice")) == NULL) { printk(KERN_ERR "Can't find my device node\n"); irq = -1; } else irq = irq_of_parse_and_map(np,0); 4. Ready to use request_irq() on irq! Thanks, Oscar Scott Wood wrote: On Wed, Sep 03, 2008 at 03:55:41PM -0700, Oscar Takeshita