diff options
author | Greg Ungerer <gerg@snapgear.com> | 2008-02-01 17:40:52 +1000 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-02-01 21:02:04 +1100 |
commit | 0c6377f878eb767846934d6c70377afac9a4db68 (patch) | |
tree | 94089c74d5ee2eadea89a1ba927d21cf6ca9b42a /arch/m68knommu/platform/5272/config.c | |
parent | 79d8bfb01be752694fb3ae93555fcc0ad91b232b (diff) |
m68knommu: remove dead timer int pending code
Remove all the dead timer interrupt checking functions for the ColdFire
CPU "timers" hardware that are not used after switching to GENERIC_TIME.
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/m68knommu/platform/5272/config.c')
-rw-r--r-- | arch/m68knommu/platform/5272/config.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/arch/m68knommu/platform/5272/config.c b/arch/m68knommu/platform/5272/config.c index 2a3cf5ea133..2aca599a1ca 100644 --- a/arch/m68knommu/platform/5272/config.c +++ b/arch/m68knommu/platform/5272/config.c @@ -123,19 +123,6 @@ void mcf_settimericr(int timer, int level) /***************************************************************************/ -int mcf_timerirqpending(int timer) -{ - volatile unsigned long *icrp; - - if ((timer >= 1 ) && (timer <= 4)) { - icrp = (volatile unsigned long *) (MCF_MBAR + MCFSIM_ICR1); - return (*icrp & (0x8 << ((4 - timer) * 4))); - } - return 0; -} - -/***************************************************************************/ - void __init config_BSP(char *commandp, int size) { #if defined (CONFIG_MOD5272) |