1
0
Fork 0

earlycon: drop semicolon from earlycon macro

Drop the trailing semicolon from the OF_EARLYCON_DECLARE() macro
definition which was left when removing the array-of-pointer
indirection.

Signed-off-by: Johan Hovold <johan@kernel.org>
Link: https://lore.kernel.org/r/20201207091601.5202-1-johan@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
zero-sugar-mainline-defconfig
Johan Hovold 2020-12-07 10:16:01 +01:00 committed by Greg Kroah-Hartman
parent ba3b8bb126
commit 76437b340b
1 changed files with 1 additions and 1 deletions

View File

@ -372,7 +372,7 @@ extern const struct earlycon_id __earlycon_table_end[];
__aligned(__alignof__(struct earlycon_id)) \
= { .name = __stringify(_name), \
.compatible = compat, \
.setup = fn };
.setup = fn }
#define EARLYCON_DECLARE(_name, fn) OF_EARLYCON_DECLARE(_name, "", fn)