summaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
authorRaul E Rangel <rrangel@chromium.org>2021-11-01 13:40:14 -0600
committerPatrick Georgi <pgeorgi@google.com>2021-11-03 08:29:16 +0000
commit4c8c8442ab6d3b0cdc267f5c479dc5d54bf87525 (patch)
tree29b2dde483588e9db54b5093d2b18cbd75e36d40 /src/lib
parent74a06296608e4c868e101ea47c0a1389977ecd91 (diff)
downloadcoreboot-4c8c8442ab6d3b0cdc267f5c479dc5d54bf87525.tar.gz
coreboot-4c8c8442ab6d3b0cdc267f5c479dc5d54bf87525.tar.bz2
coreboot-4c8c8442ab6d3b0cdc267f5c479dc5d54bf87525.zip
lib/list: Add list_append
This method will add a node to the end of the list. BUG=b:179699789 TEST=Boot guybrush to the OS Signed-off-by: Raul E Rangel <rrangel@chromium.org> Change-Id: I1792e40f789e3ef16ceca65ce4cae946e08583d1 Reviewed-on: https://review.coreboot.org/c/coreboot/+/58805 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Julius Werner <jwerner@chromium.org>
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/list.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/lib/list.c b/src/lib/list.c
index 01d5c8914e54..c3f8ee42c86e 100644
--- a/src/lib/list.c
+++ b/src/lib/list.c
@@ -28,3 +28,11 @@ void list_insert_before(struct list_node *node, struct list_node *before)
if (node->prev)
node->prev->next = node;
}
+
+void list_append(struct list_node *node, struct list_node *head)
+{
+ while (head->next)
+ head = head->next;
+
+ list_insert_after(node, head);
+}