]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
PCI: remove #ifdef DEBUG around dev_dbg call
authorJesse Barnes <jbarnes@virtuousgeek.org>
Sun, 19 Oct 2008 00:19:38 +0000 (17:19 -0700)
committerJesse Barnes <jbarnes@virtuousgeek.org>
Mon, 20 Oct 2008 18:01:50 +0000 (11:01 -0700)
No longer needed since we don't use the function symbol stuff anymore.

Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
drivers/pci/quirks.c

index 9575fc8f87b331375badbf16899e2d8f7be77494..bbf66ea8fd87b4cbe11029dd8ac2aa826ea1fedc 100644 (file)
@@ -1934,9 +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 %pF\n", f->hook);
-#endif
                        f->hook(dev);
                }
                f++;