aboutsummaryrefslogtreecommitdiffstats
path: root/arch/m68knommu/platform/5272/config.c
diff options
context:
space:
mode:
authorGreg Ungerer <gerg@snapgear.com>2008-02-01 02:40:52 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2008-02-01 05:02:04 -0500
commit0c6377f878eb767846934d6c70377afac9a4db68 (patch)
tree94089c74d5ee2eadea89a1ba927d21cf6ca9b42a /arch/m68knommu/platform/5272/config.c
parent79d8bfb01be752694fb3ae93555fcc0ad91b232b (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.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/arch/m68knommu/platform/5272/config.c b/arch/m68knommu/platform/5272/config.c
index 2a3cf5ea1336..2aca599a1ca7 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)
123 123
124/***************************************************************************/ 124/***************************************************************************/
125 125
126int mcf_timerirqpending(int timer)
127{
128 volatile unsigned long *icrp;
129
130 if ((timer >= 1 ) && (timer <= 4)) {
131 icrp = (volatile unsigned long *) (MCF_MBAR + MCFSIM_ICR1);
132 return (*icrp & (0x8 << ((4 - timer) * 4)));
133 }
134 return 0;
135}
136
137/***************************************************************************/
138
139void __init config_BSP(char *commandp, int size) 126void __init config_BSP(char *commandp, int size)
140{ 127{
141#if defined (CONFIG_MOD5272) 128#if defined (CONFIG_MOD5272)