projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bd1d985
)
PCI: remove #ifdef DEBUG around dev_dbg call
author
Jesse Barnes
<jbarnes@virtuousgeek.org>
Sun, 19 Oct 2008 00:19:38 +0000
(17:19 -0700)
committer
Jesse 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
patch
|
blob
|
history
diff --git
a/drivers/pci/quirks.c
b/drivers/pci/quirks.c
index 9575fc8f87b331375badbf16899e2d8f7be77494..bbf66ea8fd87b4cbe11029dd8ac2aa826ea1fedc 100644
(file)
--- 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++;