aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Barnes <jbarnes@virtuousgeek.org>2008-10-18 17:19:38 -0700
committerJesse Barnes <jbarnes@virtuousgeek.org>2008-10-20 11:01:50 -0700
commit1543c90c39360df333a21bfbbdfe812ae23b8167 (patch)
treea8b9738df45364cb8edc342a37f377f147e138d1
parentbd1d9855be3ab8a5c2b31053d464b7fe63e6963b (diff)
PCI: remove #ifdef DEBUG around dev_dbg call
No longer needed since we don't use the function symbol stuff anymore. Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
-rw-r--r--drivers/pci/quirks.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c
index 9575fc8f87b3..bbf66ea8fd87 100644
--- a/drivers/pci/quirks.c
+++ b/drivers/pci/quirks.c
@@ -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++;