2002-10-31 03:13:21

by David Hollis

[permalink] [raw]
Subject: [PATCH] 2.5.45 drivers/net/irda/irda-usb.c Compile Fix

--- drivers/net/irda/irda-usb.c.orig 2002-10-30 22:16:48.000000000 -0500
+++ drivers/net/irda/irda-usb.c 2002-10-30 22:17:03.000000000 -0500
@@ -1487,7 +1487,7 @@
* specify an alternate, but very few driver do like this.
* Jean II */
ret = usb_set_interface(dev, intf->altsetting->desc.bInterfaceNumber, 0);
- IRDA_DEBUG(1, "usb-irda: set interface %d result %d\n", intf->altsetting->bInterfaceNumber, ret);
+ IRDA_DEBUG(1, "usb-irda: set interface %d result %d\n", intf->altsetting->desc.bInterfaceNumber, ret);
switch (ret) {
case 0:
break;


Attachments:
linux-2.4.45-irda-usb.patch (560.00 B)

2002-10-31 05:36:42

by Greg KH

[permalink] [raw]
Subject: Re: [PATCH] 2.5.45 drivers/net/irda/irda-usb.c Compile Fix

On Wed, Oct 30, 2002 at 10:19:31PM -0500, David T Hollis wrote:
> Fixes an apparent typo in irda-usb.c that prevented it from compiling.

Oops, sorry about that, I didn't have irda debugging enabled when
building that file so I missed that one. I'll add it to my tree and
send it off later.

thanks,

greg k-h