RCW

Reference Mamnul

DTS

I want to known How to use IRQ0~11 in kernel module independly without "of function"?
and I use follwed code , but all failed。
irq = 167;
//irq = 167 - 32;
//irq = 3;
//no = irq_create_mapping(NULL, irq);
irq_set_irq_type(irq , IRQ_TYPE_LEVEL_LOW);
ret = request_irq(irq, irq_data_handle, IRQF_SHARED, "irqdata", &self);