diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-08 14:47:12 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-08 14:47:12 -0700 |
commit | 4e1491847ef5ca1c5a661601d5f96dcb7d90d2f0 (patch) | |
tree | 0baa06fd22d299baf2e632a5319d8fd7bec26d1c /include/linux | |
parent | 1ee9bed173acd2f505f4e76e69d13cb2b82963e9 (diff) | |
download | linux-3.10-4e1491847ef5ca1c5a661601d5f96dcb7d90d2f0.tar.gz linux-3.10-4e1491847ef5ca1c5a661601d5f96dcb7d90d2f0.tar.bz2 linux-3.10-4e1491847ef5ca1c5a661601d5f96dcb7d90d2f0.zip |
Fix up ARM serial driver compile failure
Proud member of Uglyhacks'R'US.
Acked-by: David S. Miller <davem@davemloft.net>
Acked-by: Russell King <rmk+lkml@arm.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/serial_core.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/serial_core.h b/include/linux/serial_core.h index 9b12fe73161..27db8da43aa 100644 --- a/include/linux/serial_core.h +++ b/include/linux/serial_core.h @@ -401,6 +401,9 @@ uart_handle_sysrq_char(struct uart_port *port, unsigned int ch, #endif return 0; } +#ifndef SUPPORT_SYSRQ +#define uart_handle_sysrq_char(port,ch,regs) uart_handle_sysrq_char(port, 0, NULL) +#endif /* * We do the SysRQ and SAK checking like this... |