From: Amit S. Kale Date: Mon, 18 Dec 2006 13:53:12 +0000 (-0800) Subject: NetXen: Link status message correction for quad port cards. X-Git-Tag: v2.6.20-rc3~56^2~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d2378e89720f364ccf3a57b26f1827923d3464f2;p=platform%2Fkernel%2Flinux-exynos.git NetXen: Link status message correction for quad port cards. Signed-off-by: Amit S. Kale netxen_nic_isr.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) Signed-off-by: Jeff Garzik --- diff --git a/drivers/net/netxen/netxen_nic_isr.c b/drivers/net/netxen/netxen_nic_isr.c index 1b45f50..06847d4 100644 --- a/drivers/net/netxen/netxen_nic_isr.c +++ b/drivers/net/netxen/netxen_nic_isr.c @@ -157,7 +157,8 @@ void netxen_nic_isr_other(struct netxen_adapter *adapter) for (portno = 0; portno < NETXEN_NIU_MAX_GBE_PORTS; portno++) { linkup = val & 1; if (linkup != (qg_linksup & 1)) { - printk(KERN_INFO "%s: PORT %d link %s\n", + printk(KERN_INFO "%s: %s PORT %d link %s\n", + adapter->port[portno]->netdev->name, netxen_nic_driver_name, portno, ((linkup == 0) ? "down" : "up")); netxen_indicate_link_status(adapter, portno, linkup);