From: Masahiro Yamada Date: Tue, 16 Sep 2014 11:21:15 +0000 (+0900) Subject: linker_lists: fix comment X-Git-Tag: KARO-TXA5-2015-06-26~606 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=97d5e9d149ca910e1bd20d06a13b9e9cceb0e502;p=karo-tx-uboot.git linker_lists: fix comment The section name and the C variable name seem to be opposite. Signed-off-by: Masahiro Yamada Cc: Marek Vasut Acked-by: Marek Vasut --- diff --git a/include/linker_lists.h b/include/linker_lists.h index 557e6273ad..507d61ba9a 100644 --- a/include/linker_lists.h +++ b/include/linker_lists.h @@ -28,11 +28,11 @@ * together. Assuming _list and _entry are the list and entry names, * then the corresponding input section name is * - * _u_boot_list + _2_ + @_list + _2_ + @_entry + * .u_boot_list_ + 2_ + @_list + _2_ + @_entry * * and the C variable name is * - * .u_boot_list_ + 2_ + @_list + _2_ + @_entry + * _u_boot_list + _2_ + @_list + _2_ + @_entry * * This ensures uniqueness for both input section and C variable name. *