From 5498fd0fba591ef5549f571f96da713ea541ed88 Mon Sep 17 00:00:00 2001
From: patacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>
Date: Mon, 18 May 2009 22:21:58 +0000
Subject: [PATCH] timer interrupt now works

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1791 42af7a65-404d-4744-a932-0658087f49c3
---
 arch/arm/src/lm3s/lm3s_timerisr.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/src/lm3s/lm3s_timerisr.c b/arch/arm/src/lm3s/lm3s_timerisr.c
index f063ee9c50..95b358df16 100644
--- a/arch/arm/src/lm3s/lm3s_timerisr.c
+++ b/arch/arm/src/lm3s/lm3s_timerisr.c
@@ -129,7 +129,7 @@ void up_timerinit(void)
 
   /* Attach the timer interrupt vector */
 
-  (void)irq_attach(LMSB_IRQ_SYSTICK, (xcpt_t)up_timerisr);
+  (void)irq_attach(LM3S_IRQ_SYSTICK, (xcpt_t)up_timerisr);
 
   /* Enable SysTick interrupts */
 
@@ -137,5 +137,5 @@ void up_timerinit(void)
 
   /* And enable the timer interrupt */
 
-  up_enable_irq(LMSB_IRQ_SYSTICK);
+  up_enable_irq(LM3S_IRQ_SYSTICK);
 }
-- 
GitLab