diff options
author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2010-08-18 00:15:46 -0400 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2010-08-20 01:07:06 -0400 |
commit | 1495cc9df4e81f5a8fa9b0b8f1034b14d24b7d8c (patch) | |
tree | 7a08852f9fb0cb3073367ef84c0218af0b5479f7 /drivers | |
parent | da5cabf80e2433131bf0ed8993abc0f7ea618c73 (diff) |
Input: sysrq - drop tty argument from sysrq ops handlers
Noone is using tty argument so let's get rid of it.
Acked-by: Alan Cox <alan@lxorguk.ukuu.org.uk>
Acked-by: Jason Wessel <jason.wessel@windriver.com>
Acked-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/char/sysrq.c | 42 | ||||
-rw-r--r-- | drivers/gpu/drm/drm_fb_helper.c | 2 | ||||
-rw-r--r-- | drivers/net/ibm_newemac/debug.c | 2 |
3 files changed, 23 insertions, 23 deletions
diff --git a/drivers/char/sysrq.c b/drivers/char/sysrq.c index 878ac0c2cc68..a892a3c249dd 100644 --- a/drivers/char/sysrq.c +++ b/drivers/char/sysrq.c | |||
@@ -76,7 +76,7 @@ static int __init sysrq_always_enabled_setup(char *str) | |||
76 | __setup("sysrq_always_enabled", sysrq_always_enabled_setup); | 76 | __setup("sysrq_always_enabled", sysrq_always_enabled_setup); |
77 | 77 | ||
78 | 78 | ||
79 | static void sysrq_handle_loglevel(int key, struct tty_struct *tty) | 79 | static void sysrq_handle_loglevel(int key) |
80 | { | 80 | { |
81 | int i; | 81 | int i; |
82 | 82 | ||
@@ -93,7 +93,7 @@ static struct sysrq_key_op sysrq_loglevel_op = { | |||
93 | }; | 93 | }; |
94 | 94 | ||
95 | #ifdef CONFIG_VT | 95 | #ifdef CONFIG_VT |
96 | static void sysrq_handle_SAK(int key, struct tty_struct *tty) | 96 | static void sysrq_handle_SAK(int key) |
97 | { | 97 | { |
98 | struct work_struct *SAK_work = &vc_cons[fg_console].SAK_work; | 98 | struct work_struct *SAK_work = &vc_cons[fg_console].SAK_work; |
99 | schedule_work(SAK_work); | 99 | schedule_work(SAK_work); |
@@ -109,7 +109,7 @@ static struct sysrq_key_op sysrq_SAK_op = { | |||
109 | #endif | 109 | #endif |
110 | 110 | ||
111 | #ifdef CONFIG_VT | 111 | #ifdef CONFIG_VT |
112 | static void sysrq_handle_unraw(int key, struct tty_struct *tty) | 112 | static void sysrq_handle_unraw(int key) |
113 | { | 113 | { |
114 | struct kbd_struct *kbd = &kbd_table[fg_console]; | 114 | struct kbd_struct *kbd = &kbd_table[fg_console]; |
115 | 115 | ||
@@ -126,7 +126,7 @@ static struct sysrq_key_op sysrq_unraw_op = { | |||
126 | #define sysrq_unraw_op (*(struct sysrq_key_op *)NULL) | 126 | #define sysrq_unraw_op (*(struct sysrq_key_op *)NULL) |
127 | #endif /* CONFIG_VT */ | 127 | #endif /* CONFIG_VT */ |
128 | 128 | ||
129 | static void sysrq_handle_crash(int key, struct tty_struct *tty) | 129 | static void sysrq_handle_crash(int key) |
130 | { | 130 | { |
131 | char *killer = NULL; | 131 | char *killer = NULL; |
132 | 132 | ||
@@ -141,7 +141,7 @@ static struct sysrq_key_op sysrq_crash_op = { | |||
141 | .enable_mask = SYSRQ_ENABLE_DUMP, | 141 | .enable_mask = SYSRQ_ENABLE_DUMP, |
142 | }; | 142 | }; |
143 | 143 | ||
144 | static void sysrq_handle_reboot(int key, struct tty_struct *tty) | 144 | static void sysrq_handle_reboot(int key) |
145 | { | 145 | { |
146 | lockdep_off(); | 146 | lockdep_off(); |
147 | local_irq_enable(); | 147 | local_irq_enable(); |
@@ -154,7 +154,7 @@ static struct sysrq_key_op sysrq_reboot_op = { | |||
154 | .enable_mask = SYSRQ_ENABLE_BOOT, | 154 | .enable_mask = SYSRQ_ENABLE_BOOT, |
155 | }; | 155 | }; |
156 | 156 | ||
157 | static void sysrq_handle_sync(int key, struct tty_struct *tty) | 157 | static void sysrq_handle_sync(int key) |
158 | { | 158 | { |
159 | emergency_sync(); | 159 | emergency_sync(); |
160 | } | 160 | } |
@@ -165,7 +165,7 @@ static struct sysrq_key_op sysrq_sync_op = { | |||
165 | .enable_mask = SYSRQ_ENABLE_SYNC, | 165 | .enable_mask = SYSRQ_ENABLE_SYNC, |
166 | }; | 166 | }; |
167 | 167 | ||
168 | static void sysrq_handle_show_timers(int key, struct tty_struct *tty) | 168 | static void sysrq_handle_show_timers(int key) |
169 | { | 169 | { |
170 | sysrq_timer_list_show(); | 170 | sysrq_timer_list_show(); |
171 | } | 171 | } |
@@ -176,7 +176,7 @@ static struct sysrq_key_op sysrq_show_timers_op = { | |||
176 | .action_msg = "Show clockevent devices & pending hrtimers (no others)", | 176 | .action_msg = "Show clockevent devices & pending hrtimers (no others)", |
177 | }; | 177 | }; |
178 | 178 | ||
179 | static void sysrq_handle_mountro(int key, struct tty_struct *tty) | 179 | static void sysrq_handle_mountro(int key) |
180 | { | 180 | { |
181 | emergency_remount(); | 181 | emergency_remount(); |
182 | } | 182 | } |
@@ -188,7 +188,7 @@ static struct sysrq_key_op sysrq_mountro_op = { | |||
188 | }; | 188 | }; |
189 | 189 | ||
190 | #ifdef CONFIG_LOCKDEP | 190 | #ifdef CONFIG_LOCKDEP |
191 | static void sysrq_handle_showlocks(int key, struct tty_struct *tty) | 191 | static void sysrq_handle_showlocks(int key) |
192 | { | 192 | { |
193 | debug_show_all_locks(); | 193 | debug_show_all_locks(); |
194 | } | 194 | } |
@@ -226,7 +226,7 @@ static void sysrq_showregs_othercpus(struct work_struct *dummy) | |||
226 | 226 | ||
227 | static DECLARE_WORK(sysrq_showallcpus, sysrq_showregs_othercpus); | 227 | static DECLARE_WORK(sysrq_showallcpus, sysrq_showregs_othercpus); |
228 | 228 | ||
229 | static void sysrq_handle_showallcpus(int key, struct tty_struct *tty) | 229 | static void sysrq_handle_showallcpus(int key) |
230 | { | 230 | { |
231 | /* | 231 | /* |
232 | * Fall back to the workqueue based printing if the | 232 | * Fall back to the workqueue based printing if the |
@@ -252,7 +252,7 @@ static struct sysrq_key_op sysrq_showallcpus_op = { | |||
252 | }; | 252 | }; |
253 | #endif | 253 | #endif |
254 | 254 | ||
255 | static void sysrq_handle_showregs(int key, struct tty_struct *tty) | 255 | static void sysrq_handle_showregs(int key) |
256 | { | 256 | { |
257 | struct pt_regs *regs = get_irq_regs(); | 257 | struct pt_regs *regs = get_irq_regs(); |
258 | if (regs) | 258 | if (regs) |
@@ -266,7 +266,7 @@ static struct sysrq_key_op sysrq_showregs_op = { | |||
266 | .enable_mask = SYSRQ_ENABLE_DUMP, | 266 | .enable_mask = SYSRQ_ENABLE_DUMP, |
267 | }; | 267 | }; |
268 | 268 | ||
269 | static void sysrq_handle_showstate(int key, struct tty_struct *tty) | 269 | static void sysrq_handle_showstate(int key) |
270 | { | 270 | { |
271 | show_state(); | 271 | show_state(); |
272 | } | 272 | } |
@@ -277,7 +277,7 @@ static struct sysrq_key_op sysrq_showstate_op = { | |||
277 | .enable_mask = SYSRQ_ENABLE_DUMP, | 277 | .enable_mask = SYSRQ_ENABLE_DUMP, |
278 | }; | 278 | }; |
279 | 279 | ||
280 | static void sysrq_handle_showstate_blocked(int key, struct tty_struct *tty) | 280 | static void sysrq_handle_showstate_blocked(int key) |
281 | { | 281 | { |
282 | show_state_filter(TASK_UNINTERRUPTIBLE); | 282 | show_state_filter(TASK_UNINTERRUPTIBLE); |
283 | } | 283 | } |
@@ -291,7 +291,7 @@ static struct sysrq_key_op sysrq_showstate_blocked_op = { | |||
291 | #ifdef CONFIG_TRACING | 291 | #ifdef CONFIG_TRACING |
292 | #include <linux/ftrace.h> | 292 | #include <linux/ftrace.h> |
293 | 293 | ||
294 | static void sysrq_ftrace_dump(int key, struct tty_struct *tty) | 294 | static void sysrq_ftrace_dump(int key) |
295 | { | 295 | { |
296 | ftrace_dump(DUMP_ALL); | 296 | ftrace_dump(DUMP_ALL); |
297 | } | 297 | } |
@@ -305,7 +305,7 @@ static struct sysrq_key_op sysrq_ftrace_dump_op = { | |||
305 | #define sysrq_ftrace_dump_op (*(struct sysrq_key_op *)NULL) | 305 | #define sysrq_ftrace_dump_op (*(struct sysrq_key_op *)NULL) |
306 | #endif | 306 | #endif |
307 | 307 | ||
308 | static void sysrq_handle_showmem(int key, struct tty_struct *tty) | 308 | static void sysrq_handle_showmem(int key) |
309 | { | 309 | { |
310 | show_mem(); | 310 | show_mem(); |
311 | } | 311 | } |
@@ -330,7 +330,7 @@ static void send_sig_all(int sig) | |||
330 | } | 330 | } |
331 | } | 331 | } |
332 | 332 | ||
333 | static void sysrq_handle_term(int key, struct tty_struct *tty) | 333 | static void sysrq_handle_term(int key) |
334 | { | 334 | { |
335 | send_sig_all(SIGTERM); | 335 | send_sig_all(SIGTERM); |
336 | console_loglevel = 8; | 336 | console_loglevel = 8; |
@@ -349,7 +349,7 @@ static void moom_callback(struct work_struct *ignored) | |||
349 | 349 | ||
350 | static DECLARE_WORK(moom_work, moom_callback); | 350 | static DECLARE_WORK(moom_work, moom_callback); |
351 | 351 | ||
352 | static void sysrq_handle_moom(int key, struct tty_struct *tty) | 352 | static void sysrq_handle_moom(int key) |
353 | { | 353 | { |
354 | schedule_work(&moom_work); | 354 | schedule_work(&moom_work); |
355 | } | 355 | } |
@@ -361,7 +361,7 @@ static struct sysrq_key_op sysrq_moom_op = { | |||
361 | }; | 361 | }; |
362 | 362 | ||
363 | #ifdef CONFIG_BLOCK | 363 | #ifdef CONFIG_BLOCK |
364 | static void sysrq_handle_thaw(int key, struct tty_struct *tty) | 364 | static void sysrq_handle_thaw(int key) |
365 | { | 365 | { |
366 | emergency_thaw_all(); | 366 | emergency_thaw_all(); |
367 | } | 367 | } |
@@ -373,7 +373,7 @@ static struct sysrq_key_op sysrq_thaw_op = { | |||
373 | }; | 373 | }; |
374 | #endif | 374 | #endif |
375 | 375 | ||
376 | static void sysrq_handle_kill(int key, struct tty_struct *tty) | 376 | static void sysrq_handle_kill(int key) |
377 | { | 377 | { |
378 | send_sig_all(SIGKILL); | 378 | send_sig_all(SIGKILL); |
379 | console_loglevel = 8; | 379 | console_loglevel = 8; |
@@ -385,7 +385,7 @@ static struct sysrq_key_op sysrq_kill_op = { | |||
385 | .enable_mask = SYSRQ_ENABLE_SIGNAL, | 385 | .enable_mask = SYSRQ_ENABLE_SIGNAL, |
386 | }; | 386 | }; |
387 | 387 | ||
388 | static void sysrq_handle_unrt(int key, struct tty_struct *tty) | 388 | static void sysrq_handle_unrt(int key) |
389 | { | 389 | { |
390 | normalize_rt_tasks(); | 390 | normalize_rt_tasks(); |
391 | } | 391 | } |
@@ -520,7 +520,7 @@ void __handle_sysrq(int key, struct tty_struct *tty, int check_mask) | |||
520 | if (!check_mask || sysrq_on_mask(op_p->enable_mask)) { | 520 | if (!check_mask || sysrq_on_mask(op_p->enable_mask)) { |
521 | printk("%s\n", op_p->action_msg); | 521 | printk("%s\n", op_p->action_msg); |
522 | console_loglevel = orig_log_level; | 522 | console_loglevel = orig_log_level; |
523 | op_p->handler(key, tty); | 523 | op_p->handler(key); |
524 | } else { | 524 | } else { |
525 | printk("This sysrq operation is disabled.\n"); | 525 | printk("This sysrq operation is disabled.\n"); |
526 | } | 526 | } |
diff --git a/drivers/gpu/drm/drm_fb_helper.c b/drivers/gpu/drm/drm_fb_helper.c index de82e201d682..5efd6d6742ec 100644 --- a/drivers/gpu/drm/drm_fb_helper.c +++ b/drivers/gpu/drm/drm_fb_helper.c | |||
@@ -369,7 +369,7 @@ static void drm_fb_helper_restore_work_fn(struct work_struct *ignored) | |||
369 | } | 369 | } |
370 | static DECLARE_WORK(drm_fb_helper_restore_work, drm_fb_helper_restore_work_fn); | 370 | static DECLARE_WORK(drm_fb_helper_restore_work, drm_fb_helper_restore_work_fn); |
371 | 371 | ||
372 | static void drm_fb_helper_sysrq(int dummy1, struct tty_struct *dummy3) | 372 | static void drm_fb_helper_sysrq(int dummy1) |
373 | { | 373 | { |
374 | schedule_work(&drm_fb_helper_restore_work); | 374 | schedule_work(&drm_fb_helper_restore_work); |
375 | } | 375 | } |
diff --git a/drivers/net/ibm_newemac/debug.c b/drivers/net/ibm_newemac/debug.c index 3995fafc1e08..8c6c1e2a8750 100644 --- a/drivers/net/ibm_newemac/debug.c +++ b/drivers/net/ibm_newemac/debug.c | |||
@@ -238,7 +238,7 @@ void emac_dbg_dump_all(void) | |||
238 | } | 238 | } |
239 | 239 | ||
240 | #if defined(CONFIG_MAGIC_SYSRQ) | 240 | #if defined(CONFIG_MAGIC_SYSRQ) |
241 | static void emac_sysrq_handler(int key, struct tty_struct *tty) | 241 | static void emac_sysrq_handler(int key) |
242 | { | 242 | { |
243 | emac_dbg_dump_all(); | 243 | emac_dbg_dump_all(); |
244 | } | 244 | } |