From: Bjorn Helgaas Date: Mon, 9 Sep 2013 23:14:21 +0000 (-0600) Subject: lspci: Drop PCIe LnkCtl "Retrain Link" decoding X-Git-Tag: v3.2.1~4 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=8ad3c8cfcf002557a8302156b79be4c54d4e22d1;p=pciutils.git lspci: Drop PCIe LnkCtl "Retrain Link" decoding Per PCIe spec r3.0, Table 7-16, the Retrain Link bit is writable but always returns 0 when read, so decoding it gives no useful information. Signed-off-by: Bjorn Helgaas --- diff --git a/ls-caps.c b/ls-caps.c index 3b554fe..f192510 100644 --- a/ls-caps.c +++ b/ls-caps.c @@ -776,9 +776,8 @@ static void cap_express_link(struct device *d, int where, int type) if ((type == PCI_EXP_TYPE_ROOT_PORT) || (type == PCI_EXP_TYPE_ENDPOINT) || (type == PCI_EXP_TYPE_LEG_END) || (type == PCI_EXP_TYPE_PCI_BRIDGE)) printf(" RCB %d bytes", w & PCI_EXP_LNKCTL_RCB ? 128 : 64); - printf(" Disabled%c Retrain%c CommClk%c\n\t\t\tExtSynch%c ClockPM%c AutWidDis%c BWInt%c AutBWInt%c\n", + printf(" Disabled%c CommClk%c\n\t\t\tExtSynch%c ClockPM%c AutWidDis%c BWInt%c AutBWInt%c\n", FLAG(w, PCI_EXP_LNKCTL_DISABLE), - FLAG(w, PCI_EXP_LNKCTL_RETRAIN), FLAG(w, PCI_EXP_LNKCTL_CLOCK), FLAG(w, PCI_EXP_LNKCTL_XSYNCH), FLAG(w, PCI_EXP_LNKCTL_CLOCKPM),