serial: pl011: Mark console as CON_ANYTIME

Exactly as in a80c49db ("serial8250: Mark console as CON_ANYTIME"),
to enable printk() during CPU hot-plugging.

Actually most of the serial console drivers do not use per-cpu resources
and can be marked as CON_ANYTIME.

Signed-off-by: Alexander Sverdlin <alexander.sverdlin@nokia.com>
Cc: Russell King <linux@armlinux.org.uk>
Cc: Jiri Slaby <jslaby@suse.com>
Cc: linux-serial@vger.kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Alexander Sverdlin 2017-01-18 10:47:33 +01:00 коммит произвёл Greg Kroah-Hartman
Родитель 1ea146a7dc
Коммит 7951ffc9ea
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -2376,7 +2376,7 @@ static struct console amba_console = {
.device = uart_console_device, .device = uart_console_device,
.setup = pl011_console_setup, .setup = pl011_console_setup,
.match = pl011_console_match, .match = pl011_console_match,
.flags = CON_PRINTBUFFER, .flags = CON_PRINTBUFFER | CON_ANYTIME,
.index = -1, .index = -1,
.data = &amba_reg, .data = &amba_reg,
}; };