diff --git a/FreeRTOS/Source/include/task.h b/FreeRTOS/Source/include/task.h
index 64b73e91b..23aadd7ab 100644
--- a/FreeRTOS/Source/include/task.h
+++ b/FreeRTOS/Source/include/task.h
@@ -80,7 +80,6 @@
 	#error "include FreeRTOS.h must appear in source files before include task.h"
 #endif
 
-#include "portable.h"
 #include "list.h"
 
 #ifdef __cplusplus
diff --git a/FreeRTOS/Source/tasks.c b/FreeRTOS/Source/tasks.c
index 403125724..91bd4ff70 100644
--- a/FreeRTOS/Source/tasks.c
+++ b/FreeRTOS/Source/tasks.c
@@ -168,7 +168,6 @@ typedef struct tskTaskControlBlock
 	#define static
 #endif
 
-/*lint -e956 */
 PRIVILEGED_DATA tskTCB * volatile pxCurrentTCB = NULL;
 
 /* Lists for ready and blocked tasks. --------------------*/
@@ -470,8 +469,6 @@ static tskTCB *prvAllocateTCBAndStack( unsigned short usStackDepth, portSTACK_TY
 
 #endif
 
-/*lint +e956 */
-
 signed portBASE_TYPE xTaskGenericCreate( pdTASK_CODE pxTaskCode, const signed char * const pcName, unsigned short usStackDepth, void *pvParameters, unsigned portBASE_TYPE uxPriority, xTaskHandle *pxCreatedTask, portSTACK_TYPE *puxStackBuffer, const xMemoryRegion * const xRegions )
 {
 signed portBASE_TYPE xReturn;
@@ -2181,7 +2178,7 @@ static portTASK_FUNCTION( prvIdleTask, pvParameters )
 		}
 		#endif /* configUSE_TICKLESS_IDLE */
 	}
-} /*lint !e715 pvParameters is not accessed but all task functions require the same prototype. */
+}
 /*-----------------------------------------------------------*/
 
 #if configUSE_TICKLESS_IDLE != 0