Skip to content

Commit 1a1df58

Browse files
pfalconnashif
authored andcommitted
drivers: pci: pci_show: Add missing space in output
Previously, it printed a line like: 0:2 8086:100e class: 0x2, 0, 0, MEM,addrs: 0xfebc0000-0xfebdffff, IRQ 11 There's visibly a missing space in "MEM,addrs", this patch adds it. Signed-off-by: Paul Sokolovsky <[email protected]>
1 parent 5681f87 commit 1a1df58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/pci/pci.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ void pci_enable_bus_master(struct pci_dev_info *dev_info)
458458

459459
void pci_show(struct pci_dev_info *dev_info)
460460
{
461-
printk("%u:%u %X:%X class: 0x%X, %u, %u, %s,"
461+
printk("%u:%u %X:%X class: 0x%X, %u, %u, %s, "
462462
"addrs: 0x%X-0x%X, IRQ %d\n",
463463
dev_info->bus,
464464
dev_info->dev,

0 commit comments

Comments
 (0)