From: Jesse Barnes Date: Sun, 19 Oct 2008 00:19:38 +0000 (-0700) Subject: PCI: remove #ifdef DEBUG around dev_dbg call X-Git-Tag: v2.6.28-rc1~77^2~3 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=1543c90c39360df333a21bfbbdfe812ae23b8167;p=~emulex%2Finfiniband.git 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 --- diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c index 9575fc8f87b..bbf66ea8fd8 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++;