[patch 2/3] PNP: Simplify quirk debug output

From: bjorn . helgaas
Date: Mon Feb 18 2008 - 11:36:02 EST


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

Signed-off-by: Bjorn Helgaas <bjorn.helgaas@xxxxxx>

Index: work6/drivers/pnp/quirks.c
===================================================================
--- work6.orig/drivers/pnp/quirks.c 2008-02-18 08:12:18.000000000 -0700
+++ work6/drivers/pnp/quirks.c 2008-02-18 08:42:43.000000000 -0700
@@ -184,8 +184,8 @@
quirk = pnp_fixups[i].quirk_function;

#ifdef DEBUG
- dev_dbg(&dev->dev, "calling quirk 0x%p", quirk);
- print_fn_descriptor_symbol(": %s()\n",
+ dev_dbg(&dev->dev, "calling ");
+ print_fn_descriptor_symbol("%s()\n",
(unsigned long) *quirk);
#endif
(*quirk)(dev);

--
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/