From 99fe7d243df0a234a96ae7b0febd827d773ab33a Mon Sep 17 00:00:00 2001 From: Elyes HAOUAS Date: Wed, 25 Apr 2018 16:53:15 +0200 Subject: libpayload/include/queue.h: Remove trailing whitespace Change-Id: I7ff676f51958e12c40a82f56e68a776ddf429228 Signed-off-by: Elyes HAOUAS Reviewed-on: https://review.coreboot.org/25825 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth Reviewed-by: Paul Menzel --- payloads/libpayload/include/queue.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'payloads/libpayload') diff --git a/payloads/libpayload/include/queue.h b/payloads/libpayload/include/queue.h index 2b64669435..e5f68af832 100644 --- a/payloads/libpayload/include/queue.h +++ b/payloads/libpayload/include/queue.h @@ -36,7 +36,7 @@ #define _SYS_QUEUE_H_ /* - * This file defines five types of data structures: singly-linked lists, + * This file defines five types of data structures: singly-linked lists, * lists, simple queues, tail queues, and circular queues. * * @@ -398,7 +398,7 @@ struct { \ XSIMPLEQ_XOR(head, &(elm)->field.sqx_next); \ } while (0) - + /* * Tail queue definitions. */ @@ -417,8 +417,8 @@ struct { \ struct type **tqe_prev; /* address of previous next element */ \ } -/* - * tail queue access methods +/* + * tail queue access methods */ #define TAILQ_FIRST(head) ((head)->tqh_first) #define TAILQ_END(head) NULL @@ -538,7 +538,7 @@ struct { \ } /* - * Circular queue access methods + * Circular queue access methods */ #define CIRCLEQ_FIRST(head) ((head)->cqh_first) #define CIRCLEQ_LAST(head) ((head)->cqh_last) -- cgit v1.2.3