]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - drivers/pci/quirks.c
Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/torvalds/linux-2.6
[linux-2.6-omap-h63xx.git] / drivers / pci / quirks.c
index 246918fe94826d37a038a72e54febc2cb35ea63b..bbf66ea8fd87b4cbe11029dd8ac2aa826ea1fedc 100644 (file)
@@ -1934,10 +1934,7 @@ static void pci_do_fixups(struct pci_dev *dev, struct pci_fixup *f, struct pci_f
        while (f < end) {
                if ((f->vendor == dev->vendor || f->vendor == (u16) PCI_ANY_ID) &&
                    (f->device == dev->device || f->device == (u16) PCI_ANY_ID)) {
-#ifdef DEBUG
-                       dev_dbg(&dev->dev, "calling ");
-                       print_fn_descriptor_symbol("%s\n", f->hook);
-#endif
+                       dev_dbg(&dev->dev, "calling %pF\n", f->hook);
                        f->hook(dev);
                }
                f++;