Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 7950
b: refs/heads/master
c: 0d9899f
h: refs/heads/master
v: v3
  • Loading branch information
david-b@pacbell.net authored and Greg Kroah-Hartman committed Sep 8, 2005
1 parent c34b2fc commit 973cf83
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0bc8e009a2d5106183ea31a2b83035e790778cab
refs/heads/master: 0d9899f8139b1e4ee84b97fb61615714fd40be5b
12 changes: 6 additions & 6 deletions trunk/drivers/usb/net/usbnet.c
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ struct driver_info {

/* fixup tx packet (add framing) */
struct sk_buff *(*tx_fixup)(struct usbnet *dev,
struct sk_buff *skb, int flags);
struct sk_buff *skb, unsigned flags);

// FIXME -- also an interrupt mechanism
// useful for at least PL2301/2302 and GL620USB-A
Expand Down Expand Up @@ -1144,7 +1144,7 @@ static int ax88772_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
}

static struct sk_buff *ax88772_tx_fixup(struct usbnet *dev, struct sk_buff *skb,
int flags)
unsigned flags)
{
int padlen;
int headroom = skb_headroom(skb);
Expand Down Expand Up @@ -1945,7 +1945,7 @@ static int genelink_rx_fixup (struct usbnet *dev, struct sk_buff *skb)
}

static struct sk_buff *
genelink_tx_fixup (struct usbnet *dev, struct sk_buff *skb, int flags)
genelink_tx_fixup (struct usbnet *dev, struct sk_buff *skb, unsigned flags)
{
int padlen;
int length = skb->len;
Expand Down Expand Up @@ -2468,7 +2468,7 @@ static int net1080_rx_fixup (struct usbnet *dev, struct sk_buff *skb)
}

static struct sk_buff *
net1080_tx_fixup (struct usbnet *dev, struct sk_buff *skb, int flags)
net1080_tx_fixup (struct usbnet *dev, struct sk_buff *skb, unsigned flags)
{
int padlen;
struct sk_buff *skb2;
Expand Down Expand Up @@ -2662,7 +2662,7 @@ static const struct driver_info blob_info = {
*-------------------------------------------------------------------------*/

static struct sk_buff *
zaurus_tx_fixup (struct usbnet *dev, struct sk_buff *skb, int flags)
zaurus_tx_fixup (struct usbnet *dev, struct sk_buff *skb, unsigned flags)
{
int padlen;
struct sk_buff *skb2;
Expand Down Expand Up @@ -2935,7 +2935,7 @@ static void defer_kevent (struct usbnet *dev, int work)

static void rx_complete (struct urb *urb, struct pt_regs *regs);

static void rx_submit (struct usbnet *dev, struct urb *urb, int flags)
static void rx_submit (struct usbnet *dev, struct urb *urb, unsigned flags)
{
struct sk_buff *skb;
struct skb_data *entry;
Expand Down

0 comments on commit 973cf83

Please sign in to comment.