summaryrefslogtreecommitdiffstats
path: root/arch/x86/pci/acpi.c
diff options
context:
space:
mode:
authorJiang Liu <jiang.liu@huawei.com>2012-06-22 14:55:19 +0800
committerBjorn Helgaas <bhelgaas@google.com>2012-06-22 15:17:13 -0600
commit8503562fd4e8e261bd7ca442705c6e8f0fd88228 (patch)
tree7933e4e8072c8900d5e95adc8f4773fc7932377a /arch/x86/pci/acpi.c
parent66e8850a2a34e6c52105d92a0f0054b304cb7140 (diff)
downloadlinux-0-day-8503562fd4e8e261bd7ca442705c6e8f0fd88228.tar.gz
linux-0-day-8503562fd4e8e261bd7ca442705c6e8f0fd88228.tar.xz
x86/PCI: get rid of redundant log messages
For each resource of a PCI host bridge, the arch code and PCI code log following messages. We don't need both, so drop the arch-specific printing. pci_root PNP0A08:00: host bridge window [io 0x0000-0x03af] pci_bus 0000:00: root bus resource [io 0x0000-0x03af] Reviewed-by: Yinghai Lu <yinghai@kernel.org> Signed-off-by: Jiang Liu <liuj97@gmail.com> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'arch/x86/pci/acpi.c')
-rw-r--r--arch/x86/pci/acpi.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/arch/x86/pci/acpi.c b/arch/x86/pci/acpi.c
index 912b54b26d6aa..505acdd6d6001 100644
--- a/arch/x86/pci/acpi.c
+++ b/arch/x86/pci/acpi.c
@@ -314,13 +314,6 @@ setup_resource(struct acpi_resource *acpi_res, void *data)
}
info->res_num++;
- if (addr.translation_offset)
- dev_info(&info->bridge->dev, "host bridge window %pR "
- "(PCI address [%#llx-%#llx])\n",
- res, res->start - addr.translation_offset,
- res->end - addr.translation_offset);
- else
- dev_info(&info->bridge->dev, "host bridge window %pR\n", res);
return AE_OK;
}