Hi Dave, Today's linux-next merge of the net tree got a conflict in drivers/net/yellowfin.c between commit e7a5965a81a29a13cd4994fa23a6a7a1488bcdb6 ("yellowfin: Fix buffer underrun after dev_alloc_skb() failure") from Linus' tree and commit 61357325f377889a1daffa14962d705dc814dd0e ("netdev: convert bulk of drivers to netdev_tx_t") from the net tree. Just context changes. I fixed it up (see below) and will carry the fix for a while. -- Cheers, Stephen Rothwell sfr@xxxxxxxxxxxxxxxx diff --cc drivers/net/yellowfin.c index c2fd618,9509477..0000000 --- a/drivers/net/yellowfin.c +++ b/drivers/net/yellowfin.c @@@ -346,8 -346,9 +346,9 @@@ static int netdev_ioctl(struct net_devi static int yellowfin_open(struct net_device *dev); static void yellowfin_timer(unsigned long data); static void yellowfin_tx_timeout(struct net_device *dev); -static void yellowfin_init_ring(struct net_device *dev); +static int yellowfin_init_ring(struct net_device *dev); - static int yellowfin_start_xmit(struct sk_buff *skb, struct net_device *dev); + static netdev_tx_t yellowfin_start_xmit(struct sk_buff *skb, + struct net_device *dev); static irqreturn_t yellowfin_interrupt(int irq, void *dev_instance); static int yellowfin_rx(struct net_device *dev); static void yellowfin_error(struct net_device *dev, int intr_status); @@@ -813,10 -806,11 +814,11 @@@ static int yellowfin_init_ring(struct n } #endif yp->tx_tail_desc = &yp->tx_status[0]; - return; + return 0; } - static int yellowfin_start_xmit(struct sk_buff *skb, struct net_device *dev) + static netdev_tx_t yellowfin_start_xmit(struct sk_buff *skb, + struct net_device *dev) { struct yellowfin_private *yp = netdev_priv(dev); unsigned entry; -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html