Commit af41d6b4cb1602abebaaa9c8774a9b0ece564796

Authored by Mateusz Zalega
Committed by Lukasz Majewski
1 parent 25fbf96b24

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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

include/linker_lists.h
... ... @@ -228,7 +228,7 @@
228 228 * and it's name.
229 229 *
230 230 * Example:
231   - * ll_entry_declare(struct my_sub_cmd, my_sub_cmd, cmd_sub, cmd.sub) = {
  231 + * ll_entry_declare(struct my_sub_cmd, my_sub_cmd, cmd_sub) = {
232 232 * .x = 3,
233 233 * .y = 4,
234 234 * };