]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
PCI/x86: format early dump like other PCI output
authorBjorn Helgaas <bjorn.helgaas@hp.com>
Wed, 14 Jan 2009 17:04:30 +0000 (10:04 -0700)
committerJesse Barnes <jbarnes@hobbes.lan>
Fri, 20 Mar 2009 02:29:18 +0000 (19:29 -0700)
Use %02x:%02x.%d rather than %02x:%02x:%02x so PCI addresses
look the same as in other parts of the kernel.

Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
arch/x86/pci/early.c

index c1a2cd541724d7e733b0606ccff265f6ee7a0662..aaf26ae58cd5cadb73ae168cd7f46edf9cc2b4f3 100644 (file)
@@ -69,11 +69,12 @@ void early_dump_pci_device(u8 bus, u8 slot, u8 func)
        int j;
        u32 val;
 
-       printk(KERN_INFO "PCI: %02x:%02x:%02x", bus, slot, func);
+       printk(KERN_INFO "pci 0000:%02x:%02x.%d config space:",
+              bus, slot, func);
 
        for (i = 0; i < 256; i += 4) {
                if (!(i & 0x0f))
-                       printk("\n%04x:",i);
+                       printk("\n  %02x:",i);
 
                val = read_pci_config(bus, slot, func, i);
                for (j = 0; j < 4; j++) {
@@ -115,4 +116,3 @@ void early_dump_pci_devices(void)
                }
        }
 }
-