Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 184506
b: refs/heads/master
c: 41a655b
h: refs/heads/master
v: v3
  • Loading branch information
kirjanov@gmail.com authored and David S. Miller committed Feb 26, 2010
1 parent 320e8dc commit da3978d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 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: e382c3018ad19744d3c5d281daf4b0e9f052af66
refs/heads/master: 41a655ba5654e47847505c164f77f8190ca9ed27
12 changes: 8 additions & 4 deletions trunk/drivers/net/greth.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,10 @@ module_param(greth_edcl, int, 0);
MODULE_PARM_DESC(greth_edcl, "GRETH EDCL usage indicator. Set to 1 if EDCL is used.");

static int greth_open(struct net_device *dev);
static int greth_start_xmit(struct sk_buff *skb, struct net_device *dev);
static int greth_start_xmit_gbit(struct sk_buff *skb, struct net_device *dev);
static netdev_tx_t greth_start_xmit(struct sk_buff *skb,
struct net_device *dev);
static netdev_tx_t greth_start_xmit_gbit(struct sk_buff *skb,
struct net_device *dev);
static int greth_rx(struct net_device *dev, int limit);
static int greth_rx_gbit(struct net_device *dev, int limit);
static void greth_clean_tx(struct net_device *dev);
Expand Down Expand Up @@ -379,7 +381,8 @@ static int greth_close(struct net_device *dev)
return 0;
}

static int greth_start_xmit(struct sk_buff *skb, struct net_device *dev)
static netdev_tx_t
greth_start_xmit(struct sk_buff *skb, struct net_device *dev)
{
struct greth_private *greth = netdev_priv(dev);
struct greth_bd *bdp;
Expand Down Expand Up @@ -441,7 +444,8 @@ static int greth_start_xmit(struct sk_buff *skb, struct net_device *dev)
}


static int greth_start_xmit_gbit(struct sk_buff *skb, struct net_device *dev)
static netdev_tx_t
greth_start_xmit_gbit(struct sk_buff *skb, struct net_device *dev)
{
struct greth_private *greth = netdev_priv(dev);
struct greth_bd *bdp;
Expand Down

0 comments on commit da3978d

Please sign in to comment.