aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>2018-06-19 11:44:42 +0200
committerMartin Mares <mj@ucw.cz>2018-06-19 11:44:42 +0200
commitd9b702cde8550b245defa130f3d93a5b34ae68d7 (patch)
tree0e5b585e31388b5102dd468d1f2375192e7a1d2b
parenteff7cc9ee7f8b6efeb7d5854abbcfb8cdc486a95 (diff)
downloadpciutils-d9b702cde8550b245defa130f3d93a5b34ae68d7.tar.gz
VPD: Cleanup
-rw-r--r--ls-vpd.c20
1 files changed, 7 insertions, 13 deletions
diff --git a/ls-vpd.c b/ls-vpd.c
index cc279c3..37217f0 100644
--- a/ls-vpd.c
+++ b/ls-vpd.c
@@ -41,19 +41,13 @@ static const struct vpd_item {
{ 'Y','A', F_TEXT, "Asset tag" },
{ 'V', 0 , F_TEXT, "Vendor specific" },
{ 'Y', 0 , F_TEXT, "System specific" },
-/*
- * The following VPD keywords are vendor specific or not part of any
- * current PCI-SIG specification
- */
- { 'C','C', F_TEXT, "CCIN" },
- { 'F','C', F_TEXT, "Feature code" },
- { 'F','N', F_TEXT, "FRU" },
- { 'N','A', F_TEXT, "Network address" },
- { 'R','M', F_TEXT, "Firmware version" },
- { 'Z', 0 , F_TEXT, "Product specific" },
-/*
- * End vendor specific VPD keywords
- */
+ /* Non-standard extensions */
+ { 'C','C', F_TEXT, "CCIN" },
+ { 'F','C', F_TEXT, "Feature code" },
+ { 'F','N', F_TEXT, "FRU" },
+ { 'N','A', F_TEXT, "Network address" },
+ { 'R','M', F_TEXT, "Firmware version" },
+ { 'Z', 0 , F_TEXT, "Product specific" },
{ 0, 0 , F_BINARY, "Unknown" }
};