1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/types.h>
3 #include <linux/errno.h>
5 #include <linux/module.h>
8 * n_null.c - Null line discipline used in the failure path
10 * Copyright (C) Intel 2017
13 static int n_null_open(struct tty_struct
*tty
)
18 static void n_null_close(struct tty_struct
*tty
)
22 static ssize_t
n_null_read(struct tty_struct
*tty
, struct file
*file
,
23 unsigned char __user
* buf
, size_t nr
)
28 static ssize_t
n_null_write(struct tty_struct
*tty
, struct file
*file
,
29 const unsigned char *buf
, size_t nr
)
34 static void n_null_receivebuf(struct tty_struct
*tty
,
35 const unsigned char *cp
, char *fp
,
40 static struct tty_ldisc_ops null_ldisc
= {
42 .magic
= TTY_LDISC_MAGIC
,
45 .close
= n_null_close
,
47 .write
= n_null_write
,
48 .receive_buf
= n_null_receivebuf
51 static int __init
n_null_init(void)
53 BUG_ON(tty_register_ldisc(N_NULL
, &null_ldisc
));
57 static void __exit
n_null_exit(void)
59 tty_unregister_ldisc(N_NULL
);
62 module_init(n_null_init
);
63 module_exit(n_null_exit
);
65 MODULE_LICENSE("GPL");
66 MODULE_AUTHOR("Alan Cox");
67 MODULE_ALIAS_LDISC(N_NULL
);
68 MODULE_DESCRIPTION("Null ldisc driver");