summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/spedfsched01/task1.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/sptests/spedfsched01/task1.c')
-rw-r--r--testsuites/sptests/spedfsched01/task1.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/testsuites/sptests/spedfsched01/task1.c b/testsuites/sptests/spedfsched01/task1.c
index a668190613..d38df41a46 100644
--- a/testsuites/sptests/spedfsched01/task1.c
+++ b/testsuites/sptests/spedfsched01/task1.c
@@ -34,12 +34,7 @@ rtems_task Task_1_through_3(
status = rtems_task_ident( RTEMS_SELF, RTEMS_SEARCH_ALL_NODES, &tid );
directive_failed( status, "rtems_task_ident" );
- /*
- * 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( task_number( tid ) * 5 * 1000 );
+ ticks = RTEMS_MILLISECONDS_TO_TICKS( task_number( tid ) * 5 * 1000 );
while( FOREVER ) {
status = rtems_clock_get_tod( &time );