Re: [PATCHv2] tty: xilinx_uartps: move to arch_initcall for earlier console

From: Michal Simek
Date: Wed Sep 20 2017 - 04:22:54 EST


On 20.9.2017 08:50, Shubhrajyoti Datta wrote:
> move to arch_initcall to get the console up really early, it is
> quite helpful for spotting early boot problems.
>
> Signed-off-by: Shubhrajyoti Datta <shubhrajyoti.datta@xxxxxxxxxx>
> ---
> drivers/tty/serial/xilinx_uartps.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/tty/serial/xilinx_uartps.c b/drivers/tty/serial/xilinx_uartps.c
> index fde55dc..96fda91 100644
> --- a/drivers/tty/serial/xilinx_uartps.c
> +++ b/drivers/tty/serial/xilinx_uartps.c
> @@ -1673,7 +1673,7 @@ static void __exit cdns_uart_exit(void)
> uart_unregister_driver(&cdns_uart_uart_driver);
> }
>
> -module_init(cdns_uart_init);
> +arch_initcall(cdns_uart_init);
> module_exit(cdns_uart_exit);
>
> MODULE_DESCRIPTION("Driver for Cadence UART");
>

Tested-by: Michal Simek <michal.simek@xxxxxxxxxx>

Thanks,
Michal