Home
last modified time | relevance | path

Searched refs:op_p (Results 1 – 2 of 2) sorted by relevance

/linux-2.6.39/drivers/tty/
Dsysrq.c477 struct sysrq_key_op *op_p = NULL; in __sysrq_get_key_op() local
482 op_p = sysrq_key_table[i]; in __sysrq_get_key_op()
484 return op_p; in __sysrq_get_key_op()
487 static void __sysrq_put_key_op(int key, struct sysrq_key_op *op_p) in __sysrq_put_key_op() argument
492 sysrq_key_table[i] = op_p; in __sysrq_put_key_op()
497 struct sysrq_key_op *op_p; in __handle_sysrq() local
513 op_p = __sysrq_get_key_op(key); in __handle_sysrq()
514 if (op_p) { in __handle_sysrq()
519 if (!check_mask || sysrq_on_mask(op_p->enable_mask)) { in __handle_sysrq()
520 printk("%s\n", op_p->action_msg); in __handle_sysrq()
[all …]
/linux-2.6.39/Documentation/
Dsysrq.txt201 register_sysrq_key(int key, struct sysrq_key_op *op_p); this will
202 register the operation pointed to by 'op_p' at table key 'key',
204 the function unregister_sysrq_key(int key, struct sysrq_key_op *op_p), which
205 will remove the key op pointed to by 'op_p' from the key 'key', if and only if