summaryrefslogtreecommitdiff
path: root/nuttx/arch/arm/src/lm/lm_timerisr.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-09 18:15:02 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-09 18:15:02 +0000
commit4a6b5ec135f4a952fbe23640c01b9b0f3f90bf2b (patch)
tree1b4d1241dd040eb89cb7451ba59448a0ca600797 /nuttx/arch/arm/src/lm/lm_timerisr.c
parent25f65f6524fe5c6508de38300796e1183051ab3b (diff)
downloadpx4-nuttx-4a6b5ec135f4a952fbe23640c01b9b0f3f90bf2b.tar.gz
px4-nuttx-4a6b5ec135f4a952fbe23640c01b9b0f3f90bf2b.tar.bz2
px4-nuttx-4a6b5ec135f4a952fbe23640c01b9b0f3f90bf2b.zip
Change naming of all Stellaris pre-processor symbols from LM3S_ to LM_ to make room in the namespace for LM4F
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5498 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/arch/arm/src/lm/lm_timerisr.c')
-rw-r--r--nuttx/arch/arm/src/lm/lm_timerisr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/arch/arm/src/lm/lm_timerisr.c b/nuttx/arch/arm/src/lm/lm_timerisr.c
index 0469a473b..49e11e5c5 100644
--- a/nuttx/arch/arm/src/lm/lm_timerisr.c
+++ b/nuttx/arch/arm/src/lm/lm_timerisr.c
@@ -130,7 +130,7 @@ void up_timerinit(void)
/* Attach the timer interrupt vector */
- (void)irq_attach(LM3S_IRQ_SYSTICK, (xcpt_t)up_timerisr);
+ (void)irq_attach(LM_IRQ_SYSTICK, (xcpt_t)up_timerisr);
/* Enable SysTick interrupts */
@@ -138,5 +138,5 @@ void up_timerinit(void)
/* And enable the timer interrupt */
- up_enable_irq(LM3S_IRQ_SYSTICK);
+ up_enable_irq(LM_IRQ_SYSTICK);
}