Re: [linux-usb-devel] Modification in CDCEther.c

2002-10-01 Thread Brad Hards
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tue, 1 Oct 2002 15:20, Vaibhav Madan wrote: > Hi > > In CDCEther.c, line number 316(2.4.19) has a XOR between skb->len and > ether_dev->data_ep_out_size. This check would work only for skb->len which > are equal to ether_dev->data_ep_out_size

[linux-usb-devel] Modification in CDCEther.c

2002-09-30 Thread Vaibhav Madan
Hi In CDCEther.c, line number 316(2.4.19) has a XOR between skb->len and ether_dev->data_ep_out_size. This check would work only for skb->len which are equal to ether_dev->data_ep_out_size, but it should also work for skb->len which are a multiple of ether_dev->data_ep_out_size. Please ch