Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 20 Aug 2013 18:22:05 +0000 (UTC)
From:      Navdeep Parhar <np@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r254577 - head/sys/dev/cxgbe
Message-ID:  <201308201822.r7KIM5Un046846@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: np
Date: Tue Aug 20 18:22:04 2013
New Revision: 254577
URL: http://svnweb.freebsd.org/changeset/base/254577

Log:
  Display P/N information in the description.
  
  Submitted by:	gnn
  MFC after:	3 days

Modified:
  head/sys/dev/cxgbe/t4_main.c

Modified: head/sys/dev/cxgbe/t4_main.c
==============================================================================
--- head/sys/dev/cxgbe/t4_main.c	Tue Aug 20 18:08:06 2013	(r254576)
+++ head/sys/dev/cxgbe/t4_main.c	Tue Aug 20 18:22:04 2013	(r254577)
@@ -2549,9 +2549,9 @@ t4_set_desc(struct adapter *sc)
 	char buf[128];
 	struct adapter_params *p = &sc->params;
 
-	snprintf(buf, sizeof(buf), "Chelsio %s %sNIC (rev %d), S/N:%s, E/C:%s",
-	    p->vpd.id, is_offload(sc) ? "R" : "", chip_rev(sc), p->vpd.sn,
-	    p->vpd.ec);
+	snprintf(buf, sizeof(buf), "Chelsio %s %sNIC (rev %d), S/N:%s, "
+	    "P/N:%s, E/C:%s", p->vpd.id, is_offload(sc) ? "R" : "",
+	    chip_rev(sc), p->vpd.sn, p->vpd.pn, p->vpd.ec);
 
 	device_set_desc_copy(sc->dev, buf);
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201308201822.r7KIM5Un046846>