]> git.baikalelectronics.ru Git - kernel.git/commit
serial: core: fix crash in uart_suspend_port
authorLucas Stach <l.stach@pengutronix.de>
Thu, 11 May 2017 10:56:14 +0000 (12:56 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 18 May 2017 14:43:55 +0000 (16:43 +0200)
commit193f171267e343f0d981b41bbd66a90f5910b469
treee6260500a6b4bc6d4bb498817117a8414f8d5c51
parenta50fe52c206428ba89ce2cb178f7929a78468fe8
serial: core: fix crash in uart_suspend_port

With serdev we might end up with serial ports that have no cdev exported
to userspace, as they are used as the bus interface to other devices. In
that case serial_match_port() won't be able to find a matching tty_dev.

Skip the irq wakeup enabling in that case, as serdev will make sure to
keep the port active, as long as there are devices depending on it.

Fixes: c9f5bd85f8ec (tty_port: register tty ports with serdev bus)
Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
Cc: stable <stable@vger.kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/serial_core.c