summaryrefslogtreecommitdiffstats
path: root/drivers/tty
diff options
context:
space:
mode:
authorAngelo Dureghello <angelo.dureghello@timesys.com>2020-10-02 16:05:45 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2020-10-05 13:32:30 +0200
commit4be87603b6dc9e49c2e07151bb51180dc0b6964a (patch)
treee6b2c2a9b74257e3645fe1228d6371277015342a /drivers/tty
parentf4eef224a09f4ea4344211dabfb875dd865df479 (diff)
downloadlinux-stable-4be87603b6dc9e49c2e07151bb51180dc0b6964a.tar.gz
linux-stable-4be87603b6dc9e49c2e07151bb51180dc0b6964a.tar.bz2
linux-stable-4be87603b6dc9e49c2e07151bb51180dc0b6964a.zip
serial: mcf: add sysrq capability
After some unsuccessful attempts to use sysrq over console, figured out that port->has_sysrq should likely be enabled, as per other architectures, this when CONFIG_SERIAL_MCF_CONSOLE is also enabled. Tested some magic sysrq commands (h, p, t, b), they works now properly. Commands works inside 5 secs after BREAK is sent, as expected. Signed-off-by: Angelo Dureghello <angelo.dureghello@timesys.com> Link: https://lore.kernel.org/r/20201002140545.477481-1-angelo.dureghello@timesys.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty')
-rw-r--r--drivers/tty/serial/mcf.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/tty/serial/mcf.c b/drivers/tty/serial/mcf.c
index 7dbfb4cde124..09c88c48fb7b 100644
--- a/drivers/tty/serial/mcf.c
+++ b/drivers/tty/serial/mcf.c
@@ -632,6 +632,7 @@ static int mcf_probe(struct platform_device *pdev)
port->ops = &mcf_uart_ops;
port->flags = UPF_BOOT_AUTOCONF;
port->rs485_config = mcf_config_rs485;
+ port->has_sysrq = IS_ENABLED(CONFIG_SERIAL_MCF_CONSOLE);
uart_add_one_port(&mcf_driver, port);
}