Re: [PATCH] PCI fixes for 2.6.9

From: Greg KH
Date: Tue Oct 19 2004 - 23:50:03 EST


ChangeSet 1.1997.37.11, 2004/10/06 11:33:28-07:00, greg@xxxxxxxxx

[PATCH] PCI: fix improper pr_debug() statement

Thanks to Joe Perches for pointing this out.

Signed-off-by: Greg Kroah-Hartman <greg@xxxxxxxxx>


drivers/pci/quirks.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)


diff -Nru a/drivers/pci/quirks.c b/drivers/pci/quirks.c
--- a/drivers/pci/quirks.c 2004-10-19 15:27:00 -07:00
+++ b/drivers/pci/quirks.c 2004-10-19 15:27:00 -07:00
@@ -992,7 +992,7 @@
while (f < end) {
if ((f->vendor == dev->vendor || f->vendor == (u16) PCI_ANY_ID) &&
(f->device == dev->device || f->device == (u16) PCI_ANY_ID)) {
- pr_debug(KERN_INFO "PCI: Calling quirk %p for %s\n", f->hook, pci_name(dev));
+ pr_debug("PCI: Calling quirk %p for %s\n", f->hook, pci_name(dev));
f->hook(dev);
}
f++;

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/