[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20231018160836.1361510-8-helgaas@kernel.org>
Date: Wed, 18 Oct 2023 11:08:35 -0500
From: Bjorn Helgaas <helgaas@...nel.org>
To: Martin Mares <mj@....cz>
Cc: Pali Rohár <pali@...nel.org>,
Gustavo Pimentel <Gustavo.Pimentel@...opsys.com>,
Mateusz Nowicki <mateusz.nowicki@...idigm.com>,
linux-pci@...r.kernel.org, linux-kernel@...r.kernel.org,
Bjorn Helgaas <bhelgaas@...gle.com>
Subject: [PATCH 7/8] lspci: Remove spurious colon (':') from PCIe PTM decoding
From: Bjorn Helgaas <bhelgaas@...gle.com>
Remove spurious colon from PTM decoding to match other enabled/disabled
decoding.
Signed-off-by: Bjorn Helgaas <bhelgaas@...gle.com>
---
ls-ecaps.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ls-ecaps.c b/ls-ecaps.c
index 5bc7a6907349..a22da6173e67 100644
--- a/ls-ecaps.c
+++ b/ls-ecaps.c
@@ -1245,7 +1245,7 @@ cap_ptm(struct device *d, int where)
buff = get_conf_long(d, where + 4);
printf("\t\tPTMCap: ");
- printf("Requester:%c Responder:%c Root:%c\n",
+ printf("Requester%c Responder%c Root%c\n",
FLAG(buff, 0x1),
FLAG(buff, 0x2),
FLAG(buff, 0x4));
@@ -1266,7 +1266,7 @@ cap_ptm(struct device *d, int where)
buff = get_conf_long(d, where + 8);
printf("\t\tPTMControl: ");
- printf("Enabled:%c RootSelected:%c\n",
+ printf("Enabled%c RootSelected%c\n",
FLAG(buff, 0x1),
FLAG(buff, 0x2));
--
2.34.1
Powered by blists - more mailing lists