/* * Allocate the IRQ */ #if 0retval = request_irq(uap->port.irq, pl011_int, 0, "uart-pl011", uap); #elseretval = request_threaded_irq(uap->port.irq, NULL, pl011_int, IRQ_TYPE_NONE | IRQF_ONESHOT,"uart-pl011", uap);