From: Michael Buesch <freesoftwaredeveloper@web.de>
To: linux-kernel@vger.kernel.org
Cc: kai@germaschewski.name
Subject: [PATCH] compiletime-fix in isdn_ppp
Date: Sun, 2 Mar 2003 15:31:33 +0000 [thread overview]
Message-ID: <200303021531.33678.freesoftwaredeveloper@web.de> (raw)
Hi.
Without this patch linux-2.5.63 vanilla didn't compile.
I don't know, if I have introduced a problem with this patch, but for me it
compiles now. :)
bye, Michael Buesch.
diff -urN -X /home/mb/dontdiff
linux-2.5.63-vanilla/drivers/isdn/i4l/isdn_ppp.c
linux-2.5.63/drivers/isdn/i4l/isdn_ppp.c
--- linux-2.5.63-vanilla/drivers/isdn/i4l/isdn_ppp.c 2002-12-16
02:08:12.000000000 +0000
+++ linux-2.5.63/drivers/isdn/i4l/isdn_ppp.c 2003-03-02 14:23:48.000000000
+0000
@@ -1037,7 +1037,7 @@
isdn_ppp_frame_log("xmit1", skb->data, skb->len, 32,
ipppd->unit, -1);
ippp_push_proto(ind_ppp, skb, proto);
- ippp_mp_xmit(idev, skb, proto);
+ ippp_mp_xmit(idev, skb);
return 0;
drop:
diff -urN -X /home/mb/dontdiff
linux-2.5.63-vanilla/drivers/isdn/i4l/isdn_ppp_mp.h
linux-2.5.63/drivers/isdn/i4l/isdn_ppp_mp.h
--- linux-2.5.63-vanilla/drivers/isdn/i4l/isdn_ppp_mp.h 2002-12-16
02:08:24.000000000 +0000
+++ linux-2.5.63/drivers/isdn/i4l/isdn_ppp_mp.h 2003-03-02 14:23:58.000000000
+0000
@@ -42,9 +42,9 @@
}
static inline void
-ippp_mp_xmit(isdn_net_dev *idev, struct sk_buff *skb, u16 proto)
+ippp_mp_xmit(isdn_net_dev *idev, struct sk_buff *skb)
{
- ippp_xmit(idev, skb, proto);
+ ippp_xmit(idev, skb);
}
static inline void
next reply other threads:[~2003-03-02 14:21 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-03-02 15:31 Michael Buesch [this message]
2003-03-03 4:44 ` [PATCH] compiletime-fix in isdn_ppp Kai Germaschewski
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200303021531.33678.freesoftwaredeveloper@web.de \
--to=freesoftwaredeveloper@web.de \
--cc=kai@germaschewski.name \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.