diff options
| author | David Howells <dhowells@redhat.com> | 2005-01-13 23:58:36 -0800 |
|---|---|---|
| committer | Greg Kroah-Hartman <greg@kroah.com> | 2005-01-13 23:58:36 -0800 |
| commit | c9cdd12cfccf61eb3db6271792ac94f394eda3ab (patch) | |
| tree | e6aeea8311af6881455699215c3fd886cf10c66a | |
| parent | 7aae52c4695ff22b9b348ddf59cbb5b339d8fb33 (diff) | |
[PATCH] PCI: Downgrade printk that complains about unsupported PCI PM caps
The attached patch downgrades to KERN_DEBUG level the printk that issues a
notification that an unsupported version of the PCI power management registers
has been encountered by pci_set_power_state().
Signed-Off-By: David Howells <dhowells@redhat.com>
Signed-off-by: Greg Kroah-Hartman <greg@kroah.com>
| -rw-r--r-- | drivers/pci/pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c index 0f6ff9fe7760..4700386db37c 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c @@ -269,7 +269,7 @@ pci_set_power_state(struct pci_dev *dev, pci_power_t state) pci_read_config_word(dev,pm + PCI_PM_PMC,&pmc); if ((pmc & PCI_PM_CAP_VER_MASK) != 2) { - printk(KERN_WARNING + printk(KERN_DEBUG "PCI: %s has unsupported PM cap regs version (%u)\n", dev->slot_name, pmc & PCI_PM_CAP_VER_MASK); return -EIO; |
