diff options
author | Paul Bolle <pebolle@tiscali.nl> | 2013-01-31 19:35:10 +0100 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2013-02-01 15:56:05 -0700 |
commit | 775c739e0b08fbffb791595a4708460fc978b5b6 (patch) | |
tree | 7ddd15c73c6bb0a56322ab906fe8dc87db792591 /drivers/pci | |
parent | fa2387124b1ac8177f7af33668ec98135fdd147f (diff) | |
download | op-kernel-dev-775c739e0b08fbffb791595a4708460fc978b5b6.zip op-kernel-dev-775c739e0b08fbffb791595a4708460fc978b5b6.tar.gz |
PCI: pciehp: Drop suspend/resume ENTRY messages
In each suspend and resume cycle my laptop prints these messages at
KERN_INFO level:
pciehp 0000:00:1c.1:pcie04: pciehp_suspend ENTRY
pciehp 0000:00:1c.0:pcie04: pciehp_suspend ENTRY
and
pciehp 0000:00:1c.0:pcie04: pciehp_resume ENTRY
pciehp 0000:00:1c.1:pcie04: pciehp_resume ENTRY
Drop these messages, that were probably used to debug the suspend and
resume code, but now serve no purpose.
Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers/pci')
-rw-r--r-- | drivers/pci/hotplug/pciehp_core.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/pci/hotplug/pciehp_core.c b/drivers/pci/hotplug/pciehp_core.c index 916bf4f..874a3ba 100644 --- a/drivers/pci/hotplug/pciehp_core.c +++ b/drivers/pci/hotplug/pciehp_core.c @@ -294,7 +294,6 @@ static void pciehp_remove(struct pcie_device *dev) #ifdef CONFIG_PM static int pciehp_suspend (struct pcie_device *dev) { - dev_info(&dev->device, "%s ENTRY\n", __func__); return 0; } @@ -304,7 +303,6 @@ static int pciehp_resume (struct pcie_device *dev) struct slot *slot; u8 status; - dev_info(&dev->device, "%s ENTRY\n", __func__); ctrl = get_service_data(dev); /* reinitialize the chipset's event detection logic */ |