summarylogtreecommitdiffstats
path: root/0001-kernel-4.18-proc_fops-to-proc_show.patch
diff options
context:
space:
mode:
Diffstat (limited to '0001-kernel-4.18-proc_fops-to-proc_show.patch')
-rw-r--r--0001-kernel-4.18-proc_fops-to-proc_show.patch42
1 files changed, 0 insertions, 42 deletions
diff --git a/0001-kernel-4.18-proc_fops-to-proc_show.patch b/0001-kernel-4.18-proc_fops-to-proc_show.patch
deleted file mode 100644
index 365e0d0bb9ba..000000000000
--- a/0001-kernel-4.18-proc_fops-to-proc_show.patch
+++ /dev/null
@@ -1,42 +0,0 @@
---- nslink.c.orig 2018-01-30 13:52:48.000000000 -0500
-+++ nslink.c 2018-09-12 22:01:56.166540521 -0400
-@@ -5349,10 +5349,11 @@ static int nrp_proc_show(struct seq_file
- }
- }
- return 0;
- }
-
-+#if LINUX_VERSION_CODE < VERSION_CODE(4,18,0)
- static int nrp_proc_open(struct inode *inode, struct file *file)
- {
- return single_open(file, nrp_proc_show, NULL);
- }
-
-@@ -5361,10 +5362,11 @@ static const struct file_operations nrp_
- .open = nrp_proc_open,
- .read = seq_read,
- .llseek = seq_lseek,
- .release = single_release,
- };
-+#endif
-
- static struct tty_operations nslink_ops = {
- .open = nrp_open,
- .close = nrp_close,
- .write = nrp_write,
-@@ -5382,11 +5384,15 @@ static struct tty_operations nslink_ops
- .break_ctl = nrp_break,
- .send_xchar = nrp_send_xchar,
- .wait_until_sent = nrp_wait_until_sent,
- .tiocmget = nrp_tiocmget,
- .tiocmset = nrp_tiocmset,
-+#if LINUX_VERSION_CODE < VERSION_CODE(4,18,0)
- .proc_fops = &nrp_proc_fops,
-+#else
-+ .proc_show = nrp_proc_show,
-+#endif
- };
- static const struct tty_port_operations nslink_port_ops = {
- .carrier_raised = nrp_port_carrier_raised,
- .dtr_rts = nrp_port_dtr_rts,
- .activate = nrp_port_activate,