Hi Jiri, Today's linux-next merge of the trivial tree got a conflict in drivers/net/typhoon.c between commit 0bc88e4af07621bc4b84477374745d01a470e85d ("drivers/net/typhoon.c: Use (pr| netdev)_<level> macro helpers") from the net tree and commit a089377f29d3af0f62f3bdc6db0c5042513fc3f3 ("Fix misspelling of "truly" in a label") from the trivial tree. Just context changes. I fixed it up (see below) and can carry the fix as necessary. -- Cheers, Stephen Rothwell sfr@xxxxxxxxxxxxxxxx diff --cc drivers/net/typhoon.c index 38c2161,d1a8068..0000000 --- a/drivers/net/typhoon.c +++ b/drivers/net/typhoon.c @@@ -2098,8 -2111,9 +2098,8 @@@ typhoon_tx_timeout(struct net_device *d struct typhoon *tp = netdev_priv(dev); if(typhoon_reset(tp->ioaddr, WaitNoSleep) < 0) { - printk(KERN_WARNING "%s: could not reset in tx timeout\n", - dev->name); + netdev_warn(dev, "could not reset in tx timeout\n"); - goto truely_dead; + goto truly_dead; } /* If we ever start using the Hi ring, it will need cleaning too */ @@@ -2107,8 -2121,9 +2107,8 @@@ typhoon_free_rx_rings(tp); if(typhoon_start_runtime(tp) < 0) { - printk(KERN_ERR "%s: could not start runtime in tx timeout\n", - dev->name); + netdev_err(dev, "could not start runtime in tx timeout\n"); - goto truely_dead; + goto truly_dead; } netif_wake_queue(dev); -- 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