License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-block.git] / drivers / s390 / char / ctrlchar.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4 2/*
1da177e4
LT
3 * Unified handling of special chars.
4 *
a53c8fab 5 * Copyright IBM Corp. 2001
1da177e4
LT
6 * Author(s): Fritz Elfert <felfert@millenux.com> <elfert@de.ibm.com>
7 *
8 */
9
10#include <linux/tty.h>
ab7373bf
HB
11#include <linux/sysrq.h>
12#include <linux/workqueue.h>
1da177e4
LT
13
14extern unsigned int
15ctrlchar_handle(const unsigned char *buf, int len, struct tty_struct *tty);
16
17
18#define CTRLCHAR_NONE (1 << 8)
19#define CTRLCHAR_CTRL (2 << 8)
20#define CTRLCHAR_SYSRQ (3 << 8)
21
22#define CTRLCHAR_MASK (~0xffu)
ab7373bf
HB
23
24
25#ifdef CONFIG_MAGIC_SYSRQ
26struct sysrq_work {
27 int key;
28 struct work_struct work;
29};
30
31void schedule_sysrq_work(struct sysrq_work *sw);
32#endif