summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp01/task1.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/sptests/sp01/task1.c')
-rw-r--r--testsuites/sptests/sp01/task1.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/testsuites/sptests/sp01/task1.c b/testsuites/sptests/sp01/task1.c
index 1527b808a6..d2b824afc1 100644
--- a/testsuites/sptests/sp01/task1.c
+++ b/testsuites/sptests/sp01/task1.c
@@ -25,12 +25,7 @@ rtems_task Task_1_through_3(
status = rtems_object_get_classic_name( rtems_task_self(), &name );
directive_failed( status, "rtems_object_get_classic_name" );
- /*
- * Use TOD_MILLISECONDS_TO_TICKS not RTEMS_MILLISECONDS_TO_TICKS to
- * test C implementation in SuperCore -- not macro version used
- * everywhere else.
- */
- ticks = TOD_MILLISECONDS_TO_TICKS( index * 5 * 1000 );
+ ticks = RTEMS_MILLISECONDS_TO_TICKS( index * 5 * 1000 );
while( FOREVER ) {
status = rtems_clock_get_tod( &time );