Show the 10/100Mbps status on link status change if using the simpler polling code. Signed-off-by: Ben Dooks Index: linux-2.6.26-rc6-quilt1/drivers/net/dm9000.c =================================================================== --- linux-2.6.26-rc6-quilt1.orig/drivers/net/dm9000.c 2008-06-16 00:18:38.000000000 +0100 +++ linux-2.6.26-rc6-quilt1/drivers/net/dm9000.c 2008-06-16 00:22:16.000000000 +0100 @@ -577,10 +577,11 @@ dm9000_poll_work(struct work_struct *w) if (old_carrier != new_carrier) { if (netif_msg_link(db)) dev_info(db->dev, - "%s: link changed from %s to %s\n", + "%s: link changed from %s to %s, %dMbps\n", ndev->name, dm9000_conv_carrier(old_carrier), - dm9000_conv_carrier(new_carrier)); + dm9000_conv_carrier(new_carrier), + (status & NSR_SPEED) ? 10 : 100); if (!new_carrier) netif_carrier_off(ndev); -- Ben (ben@fluff.org, http://www.fluff.org/) 'a smiley only costs 4 bytes' -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html