int rthal_irq_enable(unsigned irq) { if (irq >= NR_IRQS || rthal_irq_descp(irq) == NULL) return -EINVAL; return rthal_irq_chip_enable(irq); }
int rthal_irq_enable(unsigned int irq) { if (irq >= IPIPE_NR_XIRQS || rthal_irq_descp(irq) == NULL) return -EINVAL; /* * We don't care of disable nesting level: real-time IRQ * channels are not meant to be shared with the regular * kernel. */ rthal_mark_irq_enabled(irq); return rthal_irq_chip_enable(irq); }