Skip to content

Commit

Permalink
MN10300: Remove unused mn10300_intc_* functions
Browse files Browse the repository at this point in the history
No users.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: David Howells <dhowells@redhat.com>
  • Loading branch information
Thomas Gleixner authored and David Howells committed Mar 18, 2011
1 parent e61645a commit a494d3d
Showing 2 changed files with 0 additions and 30 deletions.
5 changes: 0 additions & 5 deletions arch/mn10300/include/asm/intctl-regs.h
Original file line number Diff line number Diff line change
@@ -60,11 +60,6 @@

#ifndef __ASSEMBLY__
extern void set_intr_level(int irq, u16 level);
extern void mn10300_intc_set_level(unsigned int irq, unsigned int level);
extern void mn10300_intc_clear(unsigned int irq);
extern void mn10300_intc_set(unsigned int irq);
extern void mn10300_intc_enable(unsigned int irq);
extern void mn10300_intc_disable(unsigned int irq);
extern void mn10300_set_lateack_irq_type(int irq);
#endif

25 changes: 0 additions & 25 deletions arch/mn10300/kernel/irq.c
Original file line number Diff line number Diff line change
@@ -252,31 +252,6 @@ void set_intr_level(int irq, u16 level)
__mask_and_set_icr(irq, GxICR_ENABLE, level);
}

void mn10300_intc_set_level(unsigned int irq, unsigned int level)
{
set_intr_level(irq, NUM2GxICR_LEVEL(level) & GxICR_LEVEL);
}

void mn10300_intc_clear(unsigned int irq)
{
__mask_and_set_icr(irq, GxICR_LEVEL | GxICR_ENABLE, GxICR_DETECT);
}

void mn10300_intc_set(unsigned int irq)
{
__mask_and_set_icr(irq, 0, GxICR_REQUEST | GxICR_DETECT);
}

void mn10300_intc_enable(unsigned int irq)
{
mn10300_cpupic_unmask(irq);
}

void mn10300_intc_disable(unsigned int irq)
{
mn10300_cpupic_mask(irq);
}

/*
* mark an interrupt to be ACK'd after interrupt handlers have been run rather
* than before

0 comments on commit a494d3d

Please sign in to comment.