m68knommu: remove timer device interrupt setup for ColdFire 532x
authorGreg Ungerer <gerg@uclinux.org>
Wed, 6 May 2009 04:25:40 +0000 (14:25 +1000)
committerGreg Ungerer <gerg@uclinux.org>
Tue, 15 Sep 2009 23:43:48 +0000 (09:43 +1000)
With fully implemented interrupt controller code we don't need to do
the custom interrupt setup for the timer device of the ColdFire 532x.
Remove that code.

Signed-off-by: Greg Ungerer <gerg@uclinux.org>
arch/m68knommu/platform/532x/config.c

index 3d58559..66e212b 100644 (file)
@@ -128,20 +128,6 @@ static void __init m532x_fec_init(void)
 
 void mcf_settimericr(unsigned int timer, unsigned int level)
 {
-       volatile unsigned char *icrp;
-       unsigned int icr;
-       unsigned char irq;
-
-       if (timer <= 2) {
-               switch (timer) {
-               case 2:  irq = 33; icr = MCFSIM_ICR_TIMER2; break;
-               default: irq = 32; icr = MCFSIM_ICR_TIMER1; break;
-               }
-               
-               icrp = (volatile unsigned char *) (icr);
-               *icrp = level;
-               mcf_enable_irq0(irq);
-       }
 }
 
 /***************************************************************************/