summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2011-10-14 06:19:03 +0000
committerMichael Sevakis <jethead71@rockbox.org>2011-10-14 06:19:03 +0000
commite4f64da35f8450f01044a80b27bba21641a68c21 (patch)
tree6103a1245e854e57933c12146d304594562fcd2b
parent830531b7d463155018857ca9899e760d72208279 (diff)
downloadrockbox-e4f64da35f8450f01044a80b27bba21641a68c21.tar.gz
rockbox-e4f64da35f8450f01044a80b27bba21641a68c21.zip
i.MX31 avic: Fix super-stale comment.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30748 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/target/arm/imx31/avic-imx31.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/firmware/target/arm/imx31/avic-imx31.h b/firmware/target/arm/imx31/avic-imx31.h
index a01a6cd795..7398c8464c 100644
--- a/firmware/target/arm/imx31/avic-imx31.h
+++ b/firmware/target/arm/imx31/avic-imx31.h
@@ -74,9 +74,8 @@ static inline void avic_unmask_int(enum IMX31_INT_LIST ints)
74 { AVIC_INTENNUM = ints; } 74 { AVIC_INTENNUM = ints; }
75 75
76/* Call a service routine while allowing preemption by interrupts of higher 76/* Call a service routine while allowing preemption by interrupts of higher
77 * priority. Avoid using any app or other SVC stack by doing it with a mini 77 * priority. Avoid actually enabling IRQ until the routine decides to do so;
78 * "stack on irq stack". Avoid actually enabling IRQ until the routine 78 * epilogue code will always disable them again. */
79 * decides to do so; epilogue code will always disable them again. */
80#define AVIC_NESTED_NI_CALL(fn, prio) \ 79#define AVIC_NESTED_NI_CALL(fn, prio) \
81({ asm volatile ( \ 80({ asm volatile ( \
82 "sub lr, lr, #4 \n" /* prepare return address */ \ 81 "sub lr, lr, #4 \n" /* prepare return address */ \