]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
alist: Mention the error condition in alist_add_placeholder()
authorSimon Glass <sjg@chromium.org>
Sat, 19 Oct 2024 15:21:41 +0000 (09:21 -0600)
committerSimon Glass <sjg@chromium.org>
Sat, 2 Nov 2024 17:13:59 +0000 (11:13 -0600)
Update the function comment to note that this function can return NULL
if it runs out of memory.

Signed-off-by: Simon Glass <sjg@chromium.org>
include/alist.h

index 68d268f01af38bb308c71b14928687f92541e03e..0343946bc4aff12da836706589d2222a121972d5 100644 (file)
@@ -151,8 +151,9 @@ void *alist_ensure_ptr(struct alist *lst, uint index);
  * alist_add_placeholder() - Add a new item to the end of the list
  *
  * @lst: alist to add to
- * Return: Pointer to the newly added position. Note that this is not inited so
- * the caller must copy the requested struct to the returned pointer
+ * Return: Pointer to the newly added position, or NULL if out of memory. Note
+ * that this is not inited so the caller must copy the requested struct to the
+ * returned pointer
  */
 void *alist_add_placeholder(struct alist *lst);