aboutsummaryrefslogtreecommitdiffstats
path: root/main/devicemaster-linux-vanilla/linux-4.19.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2019-10-09 08:02:54 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2019-10-09 08:28:09 +0000
commit373122a0cd02a9816167f07f2c56f4bc29ae85dc (patch)
tree26db8178ec96ab0c387dd651609add850a0ed173 /main/devicemaster-linux-vanilla/linux-4.19.patch
parent5c6f3d8bdb70cf905ad1cd739bae7bcc19096517 (diff)
downloadaports-373122a0cd02a9816167f07f2c56f4bc29ae85dc.tar.bz2
aports-373122a0cd02a9816167f07f2c56f4bc29ae85dc.tar.xz
main/devicemaster-linux-vanilla: upgrade to 7.34 / kernel 4.19.78-r1
Diffstat (limited to 'main/devicemaster-linux-vanilla/linux-4.19.patch')
-rw-r--r--main/devicemaster-linux-vanilla/linux-4.19.patch42
1 files changed, 0 insertions, 42 deletions
diff --git a/main/devicemaster-linux-vanilla/linux-4.19.patch b/main/devicemaster-linux-vanilla/linux-4.19.patch
deleted file mode 100644
index 7a7b2545a0..0000000000
--- a/main/devicemaster-linux-vanilla/linux-4.19.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-diff --git a/nslink.c b/nslink.c
-index 7be65ff..5c7444f 100755
---- a/nslink.c
-+++ b/nslink.c
-@@ -4635,7 +4635,7 @@ static int tcp_txqueue_wait(tTcpTxQueueWait *in)
- #if LINUX_VERSION_CODE < VERSION_CODE(3,15,0)
- static void tcp_data_ready(struct sock *sk, int count)
- #else
--static void tcp_data_ready(struct sock *sk)
-+void tcp_data_ready(struct sock *sk)
- #endif
- {
- struct si_state *si = (struct si_state *)(sk->sk_user_data);
-@@ -5351,19 +5351,6 @@ static int nrp_proc_show(struct seq_file *m, void *v)
- return 0;
- }
-
--static int nrp_proc_open(struct inode *inode, struct file *file)
--{
-- return single_open(file, nrp_proc_show, NULL);
--}
--
--static const struct file_operations nrp_proc_fops = {
-- .owner = THIS_MODULE,
-- .open = nrp_proc_open,
-- .read = seq_read,
-- .llseek = seq_lseek,
-- .release = single_release,
--};
--
- static struct tty_operations nslink_ops = {
- .open = nrp_open,
- .close = nrp_close,
-@@ -5384,7 +5371,7 @@ static struct tty_operations nslink_ops = {
- .wait_until_sent = nrp_wait_until_sent,
- .tiocmget = nrp_tiocmget,
- .tiocmset = nrp_tiocmset,
-- .proc_fops = &nrp_proc_fops,
-+ .proc_show = &nrp_proc_show,
- };
- static const struct tty_port_operations nslink_port_ops = {
- .carrier_raised = nrp_port_carrier_raised,