]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
expo: Fix up comments for get_cur_menuitem_text() et al
authorSimon Glass <sjg@chromium.org>
Mon, 2 Oct 2023 01:13:23 +0000 (19:13 -0600)
committerTom Rini <trini@konsulko.com>
Wed, 11 Oct 2023 19:43:55 +0000 (15:43 -0400)
This internal function could use a comment. Add one.

Also tidy up a few other comments.

Signed-off-by: Simon Glass <sjg@chromium.org>
fixup: comments

boot/cedit.c
boot/scene_internal.h
include/expo.h

index 73645f70b6cb4d38cd963b9803a2ee1408be27d3..1324a86199818830440715d593afed73c020dccd 100644 (file)
@@ -229,6 +229,16 @@ static int check_space(int ret, struct abuf *buf)
        return 0;
 }
 
+/**
+ * get_cur_menuitem_text() - Get the text of the currently selected item
+ *
+ * Looks up the object for the current item, finds text object for it and looks
+ * up the string for that text
+ *
+ * @menu: Menu to look at
+ * @strp: Returns a pointer to the next
+ * Return: 0 if OK, -ENOENT if something was not found
+ */
 static int get_cur_menuitem_text(const struct scene_obj_menu *menu,
                                 const char **strp)
 {
index 695a907dc6af51075d0740e162811540fffa040b..42efcee092f3c9abacc789bf9550cf63983f0cc7 100644 (file)
@@ -185,7 +185,7 @@ int scene_render_deps(struct scene *scn, uint id);
  * Renders the menu and all of its attached objects
  *
  * @scn: Scene to render
- * @menu: Menu render
+ * @menu: Menu to render
  * Returns: 0 if OK, -ve on error
  */
 int scene_menu_render_deps(struct scene *scn, struct scene_obj_menu *menu);
index 9d2e817eb97aa9fd91795241620b5ee0ca9ce14b..5b21110cde375afb5982cfe1bf9678728316df19 100644 (file)
@@ -505,7 +505,7 @@ int scene_txt(struct scene *scn, const char *name, uint id, uint str_id,
              struct scene_obj_txt **txtp);
 
 /**
- * scene_txt_str() - add a new string to expr and text object to a scene
+ * scene_txt_str() - add a new string to expo and text object to a scene
  *
  * @scn: Scene to update
  * @name: Name to use (this is allocated by this call)