summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nuttx/arch/arm/src/lm3s/lm3s_timerisr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/arch/arm/src/lm3s/lm3s_timerisr.c b/nuttx/arch/arm/src/lm3s/lm3s_timerisr.c
index f063ee9c5..95b358df1 100644
--- a/nuttx/arch/arm/src/lm3s/lm3s_timerisr.c
+++ b/nuttx/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);
}