aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/kernel/pci_64.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/powerpc/kernel/pci_64.c')
-rw-r--r--arch/powerpc/kernel/pci_64.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/powerpc/kernel/pci_64.c b/arch/powerpc/kernel/pci_64.c
index 18cc15468fd6..e1b3b3ef1912 100644
--- a/arch/powerpc/kernel/pci_64.c
+++ b/arch/powerpc/kernel/pci_64.c
@@ -597,7 +597,7 @@ static int __init pcibios_init(void)
597 iSeries_pcibios_init(); 597 iSeries_pcibios_init();
598#endif 598#endif
599 599
600 printk("PCI: Probing PCI hardware\n"); 600 printk(KERN_DEBUG "PCI: Probing PCI hardware\n");
601 601
602 /* Scan all of the recorded PCI controllers. */ 602 /* Scan all of the recorded PCI controllers. */
603 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) { 603 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
@@ -622,14 +622,14 @@ static int __init pcibios_init(void)
622 /* Cache the location of the ISA bridge (if we have one) */ 622 /* Cache the location of the ISA bridge (if we have one) */
623 ppc64_isabridge_dev = pci_get_class(PCI_CLASS_BRIDGE_ISA << 8, NULL); 623 ppc64_isabridge_dev = pci_get_class(PCI_CLASS_BRIDGE_ISA << 8, NULL);
624 if (ppc64_isabridge_dev != NULL) 624 if (ppc64_isabridge_dev != NULL)
625 printk("ISA bridge at %s\n", pci_name(ppc64_isabridge_dev)); 625 printk(KERN_DEBUG "ISA bridge at %s\n", pci_name(ppc64_isabridge_dev));
626 626
627#ifdef CONFIG_PPC_MULTIPLATFORM 627#ifdef CONFIG_PPC_MULTIPLATFORM
628 /* map in PCI I/O space */ 628 /* map in PCI I/O space */
629 phbs_remap_io(); 629 phbs_remap_io();
630#endif 630#endif
631 631
632 printk("PCI: Probing PCI hardware done\n"); 632 printk(KERN_DEBUG "PCI: Probing PCI hardware done\n");
633 633
634 return 0; 634 return 0;
635} 635}
@@ -796,7 +796,7 @@ static pgprot_t __pci_mmap_set_pgprot(struct pci_dev *dev, struct resource *rp,
796 else 796 else
797 prot |= _PAGE_GUARDED; 797 prot |= _PAGE_GUARDED;
798 798
799 printk("PCI map for %s:%lx, prot: %lx\n", pci_name(dev), rp->start, 799 printk(KERN_DEBUG "PCI map for %s:%lx, prot: %lx\n", pci_name(dev), rp->start,
800 prot); 800 prot);
801 801
802 return __pgprot(prot); 802 return __pgprot(prot);
@@ -1202,7 +1202,7 @@ int remap_bus_range(struct pci_bus *bus)
1202 return 1; 1202 return 1;
1203 if (start_phys == 0) 1203 if (start_phys == 0)
1204 return 1; 1204 return 1;
1205 printk("mapping IO %lx -> %lx, size: %lx\n", start_phys, start_virt, size); 1205 printk(KERN_DEBUG "mapping IO %lx -> %lx, size: %lx\n", start_phys, start_virt, size);
1206 if (__ioremap_explicit(start_phys, start_virt, size, 1206 if (__ioremap_explicit(start_phys, start_virt, size,
1207 _PAGE_NO_CACHE | _PAGE_GUARDED)) 1207 _PAGE_NO_CACHE | _PAGE_GUARDED))
1208 return 1; 1208 return 1;