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

Commit 668b21de authored by Bjorn Helgaas's avatar Bjorn Helgaas Committed by Len Brown
Browse files

PNP: use new vsprintf symbolic function pointer format



Use the '%pF' format to get rid of an "#ifdef DEBUG".

Signed-off-by: default avatarBjorn Helgaas <bjorn.helgaas@hp.com>
Signed-off-by: default avatarAndi Kleen <ak@linux.intel.com>
Signed-off-by: default avatarLen Brown <len.brown@intel.com>
parent c865d2f6
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -337,10 +337,8 @@ void pnp_fixup_device(struct pnp_dev *dev)
	for (f = pnp_fixups; *f->id; f++) {
		if (!compare_pnp_id(dev->id, f->id))
			continue;
#ifdef DEBUG
		dev_dbg(&dev->dev, "%s: calling ", f->id);
		print_fn_descriptor_symbol("%s\n", f->quirk_function);
#endif
		dev_dbg(&dev->dev, "%s: calling %pF\n", f->id,
			f->quirk_function);
		f->quirk_function(dev);
	}
}