Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

-2
-2
drivers/pci/quirks.c
··· 1934 1934 while (f < end) { 1935 1935 if ((f->vendor == dev->vendor || f->vendor == (u16) PCI_ANY_ID) && 1936 1936 (f->device == dev->device || f->device == (u16) PCI_ANY_ID)) { 1937 - #ifdef DEBUG 1938 1937 dev_dbg(&dev->dev, "calling %pF\n", f->hook); 1939 - #endif 1940 1938 f->hook(dev); 1941 1939 } 1942 1940 f++;