diff options
| author | Olof Johansson <olof@lixom.net> | 2006-04-12 16:26:59 -0400 | 
|---|---|---|
| committer | Paul Mackerras <paulus@samba.org> | 2006-04-22 04:45:14 -0400 | 
| commit | e884e9c5f28c747ac2c3e1056e1fd655a79e950d (patch) | |
| tree | 2d32a8cac548d53b7f10dd8a6b1650ed5b58464c | |
| parent | cc98f70557bd08f2eea7b955dd918692a655d72e (diff) | |
[PATCH] powerpc: Quiet PCI init printouts
Quiet some of the more debug related output from the pci probe routines.
Signed-off-by: Olof Johansson <olof@lixom.net>
Signed-off-by: Paul Mackerras <paulus@samba.org>
| -rw-r--r-- | arch/powerpc/kernel/pci_64.c | 10 | 
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; | 
