AT91SAM7: clarify sysirq_dispatcher description.
authorbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 17 Mar 2010 13:08:31 +0000 (13:08 +0000)
committerbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 17 Mar 2010 13:08:31 +0000 (13:08 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@3226 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/cpu/arm/drv/sysirq_at91.c
bertos/cpu/arm/drv/timer_at91.h

index d08f79b55efa883a87b4aaddeffb3a680f7cc523..6de17602ce7cc5755b3d38da6dbf10b4e2935f3a 100644 (file)
@@ -94,8 +94,10 @@ STATIC_ASSERT(countof(sysirq_tab) == SYSIRQ_CNT);
  * various sources (system timer, etc..) and calls
  * the corresponding handler.
  *
- * \note On ARM all IRQs are handled by the sysirq_dispatcher, so we can't
- * differentiate between context-switch and non-context-switch ISR.
+ * \note On AT91SAM7, all system IRQs (timer included) are handled
+ * by the sysirq_dispatcher, so we can't differentiate between
+ * context-switch and non-context-switch ISR inside this
+ * class of IRQs.
  */
 static DECLARE_ISR_CONTEXT_SWITCH(sysirq_dispatcher)
 {
index 68e5561e03e9894721d3ff477e19d7f221b49982..90a72cf0e7bcefa44b1e56261ef2be2737513aff 100644 (file)
@@ -65,7 +65,7 @@
 #if (CONFIG_TIMER == TIMER_ON_PIT)
 
        /*
-        * On ARM all IRQs are handled by the sysirq_dispatcher, so the actual
+        * On ARM all system IRQs are handled by the sysirq_dispatcher, so the actual
         * timer handler can be treated like any other normal routine.
         */
        #define DEFINE_TIMER_ISR        void timer_handler(void);       \