diff options
author | Mateusz Zalega <m.zalega@samsung.com> | 2014-04-29 20:14:22 +0200 |
---|---|---|
committer | Lukasz Majewski <l.majewski@samsung.com> | 2014-05-05 10:24:13 +0200 |
commit | af41d6b4cb1602abebaaa9c8774a9b0ece564796 (patch) | |
tree | 3d09ba28ea522fbcb873b8b18141a9dd98e05073 | |
parent | 25fbf96b24fd3fe0a5252c374b445be32f42b0c8 (diff) |
common: fixed linker-list example
Last argument shouldn't be there.
Signed-off-by: Mateusz Zalega <m.zalega@samsung.com>
Acked-by: Marek Vasut <marex@denx.de>
Cc: Tom Rini <trini@ti.com>
-rw-r--r-- | include/linker_lists.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linker_lists.h b/include/linker_lists.h index 997d149b71d..557e6273adb 100644 --- a/include/linker_lists.h +++ b/include/linker_lists.h @@ -228,7 +228,7 @@ * and it's name. * * Example: - * ll_entry_declare(struct my_sub_cmd, my_sub_cmd, cmd_sub, cmd.sub) = { + * ll_entry_declare(struct my_sub_cmd, my_sub_cmd, cmd_sub) = { * .x = 3, * .y = 4, * }; |