Skip to content

Commit d56edd7

Browse files
arndbgregkh
authored andcommitted
8250: uniphier: allow modular build with 8250 console
The recently added uniphier 8250 port driver supports early console probing, and it supports being built as a module, but the combination of the two fails to link: ERROR: "early_serial8250_setup" [drivers/tty/serial/8250/8250_uniphier.ko] undefined! Given that earlycon support in a loadable module makes no sense, making that code conditional on 'MODULE' is a correct solution. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Fixes: b8d20e0 ("serial: 8250_uniphier: add earlycon support") Acked-by: Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent e9036d0 commit d56edd7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/tty/serial/8250/8250_uniphier.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ struct uniphier8250_priv {
3535
spinlock_t atomic_write_lock;
3636
};
3737

38-
#ifdef CONFIG_SERIAL_8250_CONSOLE
38+
#if defined(CONFIG_SERIAL_8250_CONSOLE) && !defined(MODULE)
3939
static int __init uniphier_early_console_setup(struct earlycon_device *device,
4040
const char *options)
4141
{

0 commit comments

Comments
 (0)