This is a note to let you know that I've just added the patch titled serial: sifive: Fix sifive_serial_console_setup() section to the 5.4-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: serial-sifive-fix-sifive_serial_console_setup-section.patch and it can be found in the queue-5.4 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 9b8fef6345d5487137d4193bb0a0eae2203c284e Mon Sep 17 00:00:00 2001 From: Samuel Holland <samuel.holland@xxxxxxxxxx> Date: Fri, 23 Jun 2023 23:01:59 -0700 Subject: serial: sifive: Fix sifive_serial_console_setup() section From: Samuel Holland <samuel.holland@xxxxxxxxxx> commit 9b8fef6345d5487137d4193bb0a0eae2203c284e upstream. This function is called indirectly from the platform driver probe function. Even if the driver is built in, it may be probed after free_initmem() due to deferral or unbinding/binding via sysfs. Thus the function cannot be marked as __init. Fixes: 45c054d0815b ("tty: serial: add driver for the SiFive UART") Cc: stable <stable@xxxxxxxxxx> Signed-off-by: Samuel Holland <samuel.holland@xxxxxxxxxx> Link: https://lore.kernel.org/r/20230624060159.3401369-1-samuel.holland@xxxxxxxxxx Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/tty/serial/sifive.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/tty/serial/sifive.c +++ b/drivers/tty/serial/sifive.c @@ -821,7 +821,7 @@ static void sifive_serial_console_write( local_irq_restore(flags); } -static int __init sifive_serial_console_setup(struct console *co, char *options) +static int sifive_serial_console_setup(struct console *co, char *options) { struct sifive_serial_port *ssp; int baud = SIFIVE_DEFAULT_BAUD_RATE; Patches currently in stable-queue which might be from samuel.holland@xxxxxxxxxx are queue-5.4/serial-sifive-fix-sifive_serial_console_setup-section.patch