diff options
Diffstat (limited to 'include/linux/sysrq.h')
-rw-r--r-- | include/linux/sysrq.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/sysrq.h b/include/linux/sysrq.h index e657e523b9bf..9df8833670cb 100644 --- a/include/linux/sysrq.h +++ b/include/linux/sysrq.h | |||
@@ -29,7 +29,7 @@ struct tty_struct; | |||
29 | #define SYSRQ_ENABLE_RTNICE 0x0100 | 29 | #define SYSRQ_ENABLE_RTNICE 0x0100 |
30 | 30 | ||
31 | struct sysrq_key_op { | 31 | struct sysrq_key_op { |
32 | void (*handler)(int, struct pt_regs *, struct tty_struct *); | 32 | void (*handler)(int, struct tty_struct *); |
33 | char *help_msg; | 33 | char *help_msg; |
34 | char *action_msg; | 34 | char *action_msg; |
35 | int enable_mask; | 35 | int enable_mask; |
@@ -42,8 +42,8 @@ struct sysrq_key_op { | |||
42 | * are available -- else NULL's). | 42 | * are available -- else NULL's). |
43 | */ | 43 | */ |
44 | 44 | ||
45 | void handle_sysrq(int, struct pt_regs *, struct tty_struct *); | 45 | void handle_sysrq(int, struct tty_struct *); |
46 | void __handle_sysrq(int, struct pt_regs *, struct tty_struct *, int check_mask); | 46 | void __handle_sysrq(int, struct tty_struct *, int check_mask); |
47 | int register_sysrq_key(int, struct sysrq_key_op *); | 47 | int register_sysrq_key(int, struct sysrq_key_op *); |
48 | int unregister_sysrq_key(int, struct sysrq_key_op *); | 48 | int unregister_sysrq_key(int, struct sysrq_key_op *); |
49 | struct sysrq_key_op *__sysrq_get_key_op(int key); | 49 | struct sysrq_key_op *__sysrq_get_key_op(int key); |