diff options
author | Maciej W. Rozycki <macro@linux-mips.org> | 2007-06-01 00:47:07 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-06-01 08:18:29 -0700 |
commit | b11115c15351faba978ce1b9e75068e77f6ef48d (patch) | |
tree | aa63a32b6638f0ed3ee974a90984b3087cbd8bab /include | |
parent | 62e5b05db6cd5dd9cf9614cc5d2d0702c1e339bb (diff) | |
download | linux-3.10-b11115c15351faba978ce1b9e75068e77f6ef48d.tar.gz linux-3.10-b11115c15351faba978ce1b9e75068e77f6ef48d.tar.bz2 linux-3.10-b11115c15351faba978ce1b9e75068e77f6ef48d.zip |
serial_core.h: include <linux/sysrq.h>
The <linux/serial_core.h> header refers to handle_sysrq(), but does not
include <linux/sysrq.h> which provides a declaration of the function. This
may result in an implicit declaration and a warning if the actual one is
seen later on.
Signed-off-by: Maciej W. Rozycki <macro@linux-mips.org>
Cc: Russell King <rmk@arm.linux.org.uk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/serial_core.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/serial_core.h b/include/linux/serial_core.h index a3ac4c89683..7f2c99d66e9 100644 --- a/include/linux/serial_core.h +++ b/include/linux/serial_core.h @@ -152,6 +152,7 @@ #include <linux/sched.h> #include <linux/tty.h> #include <linux/mutex.h> +#include <linux/sysrq.h> struct uart_port; struct uart_info; |