Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 188471
b: refs/heads/master
c: cb19171
h: refs/heads/master
i:
  188469: b15d142
  188467: 7250141
  188463: bf62ce0
v: v3
  • Loading branch information
Yi Li authored and Mike Frysinger committed Mar 9, 2010
1 parent 26f8d27 commit 9b08705
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 54536c5c6a807d0db7252c3b33638b88f34650ff
refs/heads/master: cb191718fcca887fb4d5e3de833546ab12b433f9
21 changes: 13 additions & 8 deletions trunk/arch/blackfin/mach-common/ints-priority.c
Original file line number Diff line number Diff line change
Expand Up @@ -1062,7 +1062,6 @@ int __init init_arch_irq(void)
#elif defined(CONFIG_BF538) || defined(CONFIG_BF539)
case IRQ_PORTF_INTA:
#endif

set_irq_chained_handler(irq,
bfin_demux_gpio_irq);
break;
Expand All @@ -1073,24 +1072,30 @@ int __init init_arch_irq(void)
#endif

#ifdef CONFIG_SMP
#ifdef CONFIG_TICKSOURCE_CORETMR
case IRQ_CORETMR:
#endif
case IRQ_SUPPLE_0:
case IRQ_SUPPLE_1:
set_irq_handler(irq, handle_percpu_irq);
break;
#endif

#ifdef CONFIG_IPIPE
#ifndef CONFIG_TICKSOURCE_CORETMR
case IRQ_TIMER0:
#ifdef CONFIG_TICKSOURCE_CORETMR
case IRQ_CORETMR:
# ifdef CONFIG_SMP
set_irq_handler(irq, handle_percpu_irq);
break;
# else
set_irq_handler(irq, handle_simple_irq);
break;
# endif
#endif
case IRQ_CORETMR:

#ifdef CONFIG_TICKSOURCE_GPTMR0
case IRQ_TIMER0:
set_irq_handler(irq, handle_simple_irq);
break;
#endif

#ifdef CONFIG_IPIPE
default:
set_irq_handler(irq, handle_level_irq);
break;
Expand Down

0 comments on commit 9b08705

Please sign in to comment.