mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
mux: fix build problem
Fixes: In file included from drivers/serial/mux.c:37: include/linux/serial_core.h: In function 'uart_handle_sysrq_char': include/linux/serial_core.h:467: error: 'struct uart_port' has no member named 'sysrq' include/linux/serial_core.h:468: error: 'struct uart_port' has no member named 'sysrq' Signed-off-by: Alexander Beregalov <a.beregalov@gmail.com> Signed-off-by: Alan Cox <alan@lxorguk.ukuu.org.uk> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
e713abead3
commit
06e82df015
1 changed files with 1 additions and 1 deletions
|
@ -277,7 +277,7 @@ struct uart_port {
|
||||||
struct uart_icount icount; /* statistics */
|
struct uart_icount icount; /* statistics */
|
||||||
|
|
||||||
struct console *cons; /* struct console, if any */
|
struct console *cons; /* struct console, if any */
|
||||||
#ifdef CONFIG_SERIAL_CORE_CONSOLE
|
#if defined(CONFIG_SERIAL_CORE_CONSOLE) || defined(SUPPORT_SYSRQ)
|
||||||
unsigned long sysrq; /* sysrq timeout */
|
unsigned long sysrq; /* sysrq timeout */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue