diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-04-25 16:53:15 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-04-27 09:11:16 +0000 |
commit | 99fe7d243df0a234a96ae7b0febd827d773ab33a (patch) | |
tree | 22e8cd04d70068cbeeb09d50754c2e1df1e0a872 /payloads | |
parent | c5387ddd53e738d6f54d8932d0e1e9d6cb7268f2 (diff) |
libpayload/include/queue.h: Remove trailing whitespace
Change-Id: I7ff676f51958e12c40a82f56e68a776ddf429228
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/25825
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin Roth <martinroth@google.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'payloads')
-rw-r--r-- | payloads/libpayload/include/queue.h | 10 |
1 files changed, 5 insertions, 5 deletions
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) |