From: Vinson Lee Date: Wed, 2 Jan 2019 19:39:17 +0000 (+0000) Subject: lspci: Fix extra newline if L1.2 is not supported. X-Git-Tag: v3.6.3~21 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=6469d596a8b3c4e0eba1495a74788d5e80751da8;p=pciutils.git lspci: Fix extra newline if L1.2 is not supported. Fixes: fb17077dc378 ("Cleaned up the previous patch") Signed-off-by: Vinson Lee --- diff --git a/ls-ecaps.c b/ls-ecaps.c index db99ed0..4417cd9 100644 --- a/ls-ecaps.c +++ b/ls-ecaps.c @@ -711,17 +711,19 @@ cap_l1pm(struct device *d, int where) FLAG(val, PCI_L1PM_SUBSTAT_CTL1_ASPM_L11)); if (l1_cap & PCI_L1PM_SUBSTAT_CAP_PM_L12 || l1_cap & PCI_L1PM_SUBSTAT_CAP_ASPM_L12) - printf("\t\t\t T_CommonMode=%dus", BITS(val, 8, 8)); - - if (l1_cap & PCI_L1PM_SUBSTAT_CAP_ASPM_L12) { - scale = BITS(val, 29, 3); - if (scale > 5) - printf(" LTR1.2_Threshold="); - else - printf(" LTR1.2_Threshold=%lldns", BITS(val, 16, 10) * (unsigned long long) cap_ltr_scale(scale)); + printf("\t\t\t T_CommonMode=%dus", BITS(val, 8, 8)); + + if (l1_cap & PCI_L1PM_SUBSTAT_CAP_ASPM_L12) + { + scale = BITS(val, 29, 3); + if (scale > 5) + printf(" LTR1.2_Threshold="); + else + printf(" LTR1.2_Threshold=%lldns", BITS(val, 16, 10) * (unsigned long long) cap_ltr_scale(scale)); + } + printf("\n"); } - printf("\n"); val = get_conf_long(d, where + PCI_L1PM_SUBSTAT_CTL2); printf("\t\tL1SubCtl2:");