]> git.ipfire.org Git - thirdparty/pciutils.git/commitdiff
Verbosity of Secondary PCI Express cap should not depend on device type
authorMartin Mares <mj@ucw.cz>
Tue, 21 Jan 2020 22:07:25 +0000 (23:07 +0100)
committerMartin Mares <mj@ucw.cz>
Tue, 21 Jan 2020 22:07:25 +0000 (23:07 +0100)
ls-ecaps.c

index 4417cd9e1824bd552d4948214f5b289686b2a60c..00217342731d646b12572484e80e062df1ff5fe1 100644 (file)
@@ -77,12 +77,12 @@ cap_ltr(struct device *d, int where)
 }
 
 static void
-cap_sec(struct device *d, int where, int type)
+cap_sec(struct device *d, int where)
 {
   u32 ctrl3, lane_err_stat;
   u8 lane;
   printf("Secondary PCI Express\n");
-  if (verbose < 2 && type == 0)
+  if (verbose < 2)
     return;
 
   if (!config_fetch(d, where + PCI_SEC_LNKCTL3, 12))
@@ -897,7 +897,7 @@ show_ext_caps(struct device *d, int type)
            cap_ltr(d, where);
            break;
          case PCI_EXT_CAP_ID_SECPCI:
-           cap_sec(d, where, type);
+           cap_sec(d, where);
            break;
          case PCI_EXT_CAP_ID_PMUX:
            printf("Protocol Multiplexing <?>\n");