timer: note which sdcc version the bug affects
authorAlan Cox <alan@linux.intel.com>
Sat, 3 Jan 2015 13:38:01 +0000 (13:38 +0000)
committerAlan Cox <alan@linux.intel.com>
Sat, 3 Jan 2015 13:38:01 +0000 (13:38 +0000)
Kernel/timer.c

index c4059aa..eda5c3e 100644 (file)
@@ -16,7 +16,7 @@ timer_t set_timer_duration(uint16_t duration)
        }
        /* obvious code is return (miniticks+duration), however we have to do */
        /* it this longwinded way or sdcc doesn't load miniticks atomically */
-       /* sdcc bug: ordering affects result */
+       /* sdcc 3.4.0 bug: ordering affects result */
        a = duration;
        a += ticks.h.low;