Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0255f543 authored by Bjorn Helgaas's avatar Bjorn Helgaas Committed by Greg Kroah-Hartman
Browse files

PCI: simplify quirk debug output



print_fn_descriptor_symbol() prints the address if we don't have a symbol,
so no need to print both.

Signed-off-by: default avatarBjorn Helgaas <bjorn.helgaas@hp.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent ddf02886
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1502,8 +1502,8 @@ static void pci_do_fixups(struct pci_dev *dev, struct pci_fixup *f, struct pci_f
		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 quirk 0x%p", f->hook);
			print_fn_descriptor_symbol(": %s()\n",
			dev_dbg(&dev->dev, "calling ");
			print_fn_descriptor_symbol("%s()\n",
				(unsigned long) f->hook);
#endif
			f->hook(dev);