aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAlexander Beregalov <a.beregalov@gmail.com>2009-04-06 12:34:34 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2009-04-06 17:36:35 -0400
commit06e82df015afad2d96d030f76f5e4d13e6dcdfa4 (patch)
tree55726382b94f45095077fe904e8cb6970ab1fb5f /include
parente713abead3324f6d4381a3d280b7ce35b7eadb7a (diff)
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>
Diffstat (limited to 'include')
-rw-r--r--include/linux/serial_core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/serial_core.h b/include/linux/serial_core.h
index df9245c7bd3b..83e4b3ff9cda 100644
--- a/include/linux/serial_core.h
+++ b/include/linux/serial_core.h
@@ -277,7 +277,7 @@ struct uart_port {
277 struct uart_icount icount; /* statistics */ 277 struct uart_icount icount; /* statistics */
278 278
279 struct console *cons; /* struct console, if any */ 279 struct console *cons; /* struct console, if any */
280#ifdef CONFIG_SERIAL_CORE_CONSOLE 280#if defined(CONFIG_SERIAL_CORE_CONSOLE) || defined(SUPPORT_SYSRQ)
281 unsigned long sysrq; /* sysrq timeout */ 281 unsigned long sysrq; /* sysrq timeout */
282#endif 282#endif
283 283