Skip to content

Commit

Permalink
m68knommu: remove use of IRQ_FLG_LOCK from 68360 platform support
Browse files Browse the repository at this point in the history
The m68knommu arch does not define or use IRQ_FLG_LOCK in its irq
subsystem. Remove obsolete use of it.

Signed-off-by: Greg Ungerer <gerg@uclinux.org>
  • Loading branch information
Greg Ungerer committed Feb 15, 2011
1 parent bc0c36d commit 4531dab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arch/m68knommu/platform/68360/commproc.c
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ void
cpm_install_handler(int vec, void (*handler)(), void *dev_id)
{

request_irq(vec, handler, IRQ_FLG_LOCK, "timer", dev_id);
request_irq(vec, handler, 0, "timer", dev_id);

/* if (cpm_vecs[vec].handler != 0) */
/* printk(KERN_INFO "CPM interrupt %x replacing %x\n", */
Expand Down
2 changes: 1 addition & 1 deletion arch/m68knommu/platform/68360/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ void hw_timer_init(void)
/* Set compare register 32Khz / 32 / 10 = 100 */
TCMP = 10;

request_irq(IRQ_MACHSPEC | 1, timer_routine, IRQ_FLG_LOCK, "timer", NULL);
request_irq(IRQ_MACHSPEC | 1, timer_routine, 0, "timer", NULL);
#endif

/* General purpose quicc timers: MC68360UM p7-20 */
Expand Down

0 comments on commit 4531dab

Please sign in to comment.