[coreboot-gerrit] New patch to review for coreboot: 2f7e682 kconfig: Replace mentions of "list_struct" to "list_head"

Stefan Reinauer (stefan.reinauer@coreboot.org) gerrit at coreboot.org
Mon Apr 6 01:48:04 CEST 2015


Stefan Reinauer (stefan.reinauer at coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/9314

-gerrit

commit 2f7e682c31bdfbb08e7a724407195b1918f370ec
Author: Stefan Reinauer <stefan.reinauer at coreboot.org>
Date:   Mon Apr 6 01:34:47 2015 +0200

    kconfig: Replace mentions of "list_struct" to "list_head"
    
    There's no such thing as "list_struct".
    
    Signed-off-by: Andrey Utkin <andrey.krieger.utkin at gmail.com>
    Acked-by: Steven Rostedt <rostedt at goodmis.org>
    Acked-by: Mauro Carvalho Chehab <mchehab at osg.samsung.com>
    Acked-by: Paul E. McKenney <paulmck at linux.vnet.ibm.com>
    Acked-by: Alex Deucher <alexander.deucher at amd.com>
    Signed-off-by: Jiri Kosina <jkosina at suse.cz>
    
    Change-Id: Ida39beb7b81801b277b623ff5a40291d643706ee
    Signed-off-by: Stefan Reinauer <stefan.reinauer at coreboot.org>
---
 util/kconfig/list.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/util/kconfig/list.h b/util/kconfig/list.h
index 685d80e..2cf23f0 100644
--- a/util/kconfig/list.h
+++ b/util/kconfig/list.h
@@ -34,7 +34,7 @@ struct list_head {
  * list_entry - get the struct for this entry
  * @ptr:	the &struct list_head pointer.
  * @type:	the type of the struct this is embedded in.
- * @member:	the name of the list_struct within the struct.
+ * @member:	the name of the list_head within the struct.
  */
 #define list_entry(ptr, type, member) \
 	container_of(ptr, type, member)
@@ -43,7 +43,7 @@ struct list_head {
  * list_for_each_entry	-	iterate over list of given type
  * @pos:	the type * to use as a loop cursor.
  * @head:	the head for your list.
- * @member:	the name of the list_struct within the struct.
+ * @member:	the name of the list_head within the struct.
  */
 #define list_for_each_entry(pos, head, member)				\
 	for (pos = list_entry((head)->next, typeof(*pos), member);	\
@@ -55,7 +55,7 @@ struct list_head {
  * @pos:	the type * to use as a loop cursor.
  * @n:		another type * to use as temporary storage
  * @head:	the head for your list.
- * @member:	the name of the list_struct within the struct.
+ * @member:	the name of the list_head within the struct.
  */
 #define list_for_each_entry_safe(pos, n, head, member)			\
 	for (pos = list_entry((head)->next, typeof(*pos), member),	\



More information about the coreboot-gerrit mailing list