Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // in file: arch/arm/mach-msm/irq.c
- for (n = 0; n < NR_MSM_IRQS; n++) {
- set_irq_chip(n, &msm_irq_chip);
- set_irq_handler(n, handle_level_irq);
- // On Raphael/Diamond the device hangs when debug timer interrupt is enabled - netripper
- if (n == INT_DEBUG_TIMER_EXP)
- {
- set_irq_flags(n, IRQF_NOAUTOEN);
- }
- else
- {
- set_irq_flags(n, IRQF_VALID);
- }
- }
Add Comment
Please, Sign In to add comment