netripper

netripper

Oct 27th, 2008
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.55 KB | None | 0 0
  1. // in file: arch/arm/mach-msm/irq.c
  2.  
  3.         for (n = 0; n < NR_MSM_IRQS; n++) {
  4.                 set_irq_chip(n, &msm_irq_chip);
  5.                 set_irq_handler(n, handle_level_irq);
  6.  
  7.                 // On Raphael/Diamond the device hangs when debug timer interrupt is enabled - netripper
  8.                 if (n == INT_DEBUG_TIMER_EXP)
  9.                 {
  10.                         set_irq_flags(n, IRQF_NOAUTOEN);
  11.                 }
  12.                 else
  13.                 {
  14.                         set_irq_flags(n, IRQF_VALID);
  15.                 }
  16.         }
Add Comment
Please, Sign In to add comment