diff --git a/Source/portable/GCC/ATMega323/port.c b/Source/portable/GCC/ATMega323/port.c
index a29f5ef52..9be0b614a 100644
--- a/Source/portable/GCC/ATMega323/port.c
+++ b/Source/portable/GCC/ATMega323/port.c
@@ -314,9 +314,6 @@ unsigned portSHORT usAddress;
 
 portBASE_TYPE xPortStartScheduler( void )
 {
-	/* In this port we ignore the parameter and use the configUSE_PREEMPTION
-	definition instead. */
-
 	/* Setup the hardware to generate the tick. */
 	prvSetupTimerInterrupt();
 
diff --git a/Source/portable/MPLAB/PIC18F/port.c b/Source/portable/MPLAB/PIC18F/port.c
index d2edfca75..d6d5e1e63 100644
--- a/Source/portable/MPLAB/PIC18F/port.c
+++ b/Source/portable/MPLAB/PIC18F/port.c
@@ -487,9 +487,6 @@ unsigned portCHAR ucBlock;
 
 portBASE_TYPE xPortStartScheduler( void )
 {
-	/* In this port we ignore the parameter and use the configUSE_PREEMPTION
-	definition instead. */
-
 	/* Setup a timer for the tick ISR is using the preemptive scheduler. */
 	prvSetupTimerInterrupt();