ofnode: Update of_add_subnode() to indicate name is alloced
authorSimon Glass <sjg@chromium.org>
Sat, 11 Jan 2025 00:00:11 +0000 (17:00 -0700)
committerTom Rini <trini@konsulko.com>
Wed, 22 Jan 2025 21:58:03 +0000 (15:58 -0600)
This function allocates memory for the node name, so mention this in the
function comment.

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

index 890f0e6..c5f0a6d 100644 (file)
@@ -1809,7 +1809,7 @@ static inline int ofnode_read_bootscript_flash(u64 *bootscr_flash_offset,
  * of_add_subnode() - add a new subnode to a node
  *
  * @parent:    parent node to add to
- * @name:      name of subnode
+ * @name:      name of subnode (allocated by this function)
  * @nodep:     returns pointer to new subnode (valid if the function returns 0
  *     or -EEXIST)
  * Returns 0 if OK, -EEXIST if already exists, -ENOMEM if out of memory, other