public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] compiletime-fix in isdn_ppp
@ 2003-03-02 15:31 Michael Buesch
  2003-03-03  4:44 ` Kai Germaschewski
  0 siblings, 1 reply; 2+ messages in thread
From: Michael Buesch @ 2003-03-02 15:31 UTC (permalink / raw)
  To: linux-kernel; +Cc: kai

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 


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] compiletime-fix in isdn_ppp
  2003-03-02 15:31 [PATCH] compiletime-fix in isdn_ppp Michael Buesch
@ 2003-03-03  4:44 ` Kai Germaschewski
  0 siblings, 0 replies; 2+ messages in thread
From: Kai Germaschewski @ 2003-03-03  4:44 UTC (permalink / raw)
  To: Michael Buesch; +Cc: linux-kernel, kai

On Sun, 2 Mar 2003, Michael Buesch wrote:

> 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. :)

Looks good, a similar patch is in my tree, too...

--Kai



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2003-03-03  4:34 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-03-02 15:31 [PATCH] compiletime-fix in isdn_ppp Michael Buesch
2003-03-03  4:44 ` Kai Germaschewski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox