public inbox for linux-pci@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] pci: Show PCI bus number with hex prefix
@ 2026-02-06 23:20 Helge Deller
  0 siblings, 0 replies; only message in thread
From: Helge Deller @ 2026-02-06 23:20 UTC (permalink / raw)
  To: Bjorn Helgaas, linux-pci, Andrew Morton, linux-kernel

The PCI bus number is printed as hex number (base = 16) but without the "0x"
prefix in the syslog, as can be seen here:
  pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
  pci_bus 0000:00: root bus resource [mem 0xfffffffff8000000-0xfffffffff87fffff]
  pci_bus 0000:00: root bus resource [bus 00-07]

Add the SPECIAL flag to the printk format to add the 0x prefix.

Signed-off-by: Helge Deller <deller@gmx.de>

diff --git a/lib/vsprintf.c b/lib/vsprintf.c
index a3790c43a0ab..f52fc95981b5 100644
--- a/lib/vsprintf.c
+++ b/lib/vsprintf.c
@@ -1088,7 +1088,7 @@ char *resource_string(char *buf, char *end, struct resource *res,
 		.base = 16,
 		.field_width = 2,
 		.precision = -1,
-		.flags = SMALL | ZEROPAD,
+		.flags = SPECIAL | SMALL | ZEROPAD,
 	};
 	static const struct printf_spec str_spec = {
 		.field_width = -1,

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2026-02-06 23:20 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-06 23:20 [PATCH] pci: Show PCI bus number with hex prefix Helge Deller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox