diff options
author | Jesse Barnes <jbarnes@virtuousgeek.org> | 2008-10-18 20:19:38 -0400 |
---|---|---|
committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2008-10-20 14:01:50 -0400 |
commit | 1543c90c39360df333a21bfbbdfe812ae23b8167 (patch) | |
tree | a8b9738df45364cb8edc342a37f377f147e138d1 | |
parent | bd1d9855be3ab8a5c2b31053d464b7fe63e6963b (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.c | 2 |
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 | |||
1934 | while (f < end) { | 1934 | while (f < end) { |
1935 | if ((f->vendor == dev->vendor || f->vendor == (u16) PCI_ANY_ID) && | 1935 | if ((f->vendor == dev->vendor || f->vendor == (u16) PCI_ANY_ID) && |
1936 | (f->device == dev->device || f->device == (u16) PCI_ANY_ID)) { | 1936 | (f->device == dev->device || f->device == (u16) PCI_ANY_ID)) { |
1937 | #ifdef DEBUG | ||
1938 | dev_dbg(&dev->dev, "calling %pF\n", f->hook); | 1937 | dev_dbg(&dev->dev, "calling %pF\n", f->hook); |
1939 | #endif | ||
1940 | f->hook(dev); | 1938 | f->hook(dev); |
1941 | } | 1939 | } |
1942 | f++; | 1940 | f++; |