From ab7312d5b49be71f61a3c205faf583795da092b7 Mon Sep 17 00:00:00 2001 From: Ramesh Date: Wed, 22 Apr 2026 16:49:12 +0530 Subject: [PATCH] - Fixed the wrong pre-processor comment and function parameters --- include/list.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/list.h b/include/list.h index b6e0d34f4..f9a8c00f6 100644 --- a/include/list.h +++ b/include/list.h @@ -92,7 +92,7 @@ */ #ifndef configLIST_VOLATILE #define configLIST_VOLATILE -#endif /* configSUPPORT_CROSS_MODULE_OPTIMISATION */ +#endif /* configLIST_VOLATILE */ /* *INDENT-OFF* */ #ifdef __cplusplus @@ -191,7 +191,7 @@ typedef struct xLIST * Access macro to get the owner of a list item. The owner of a list item * is the object (usually a TCB) that contains the list item. * - * \page listGET_LIST_ITEM_OWNER listSET_LIST_ITEM_OWNER + * \page listGET_LIST_ITEM_OWNER listGET_LIST_ITEM_OWNER * \ingroup LinkedList */ #define listGET_LIST_ITEM_OWNER( pxListItem ) ( ( pxListItem )->pvOwner ) @@ -310,7 +310,7 @@ typedef struct xLIST * Remove an item from a list. The list item has a pointer to the list that * it is in, so only the list item need be passed into the function. * - * @param uxListRemove The item to be removed. The item will remove itself from + * @param pxItemToRemove The item to be removed. The item will remove itself from * the list pointed to by it's pxContainer parameter. * * @return The number of items that remain in the list after the list item has @@ -491,7 +491,7 @@ void vListInsertEnd( List_t * const pxList, * Remove an item from a list. The list item has a pointer to the list that * it is in, so only the list item need be passed into the function. * - * @param uxListRemove The item to be removed. The item will remove itself from + * @param pxItemToRemove The item to be removed. The item will remove itself from * the list pointed to by it's pxContainer parameter. * * @return The number of items that remain in the list after the list item has