diff options
author | Len Brown <len.brown@intel.com> | 2008-10-22 23:28:43 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2008-10-22 23:28:43 -0400 |
commit | 4dff4e7f6cbcd2722b02dbb394ba87c4e05f8841 (patch) | |
tree | 2b80f6f9d3b5b1ff4600810c4a30917b2d66b7ab /drivers/pnp/quirks.c | |
parent | 5f50ef453dcb05115fc98f244b8f10bfacd4b8b7 (diff) | |
parent | ac88a8f3f7df04774b386ddaf586040adb819b58 (diff) |
Merge branch 'pnp-debug' into test
Diffstat (limited to 'drivers/pnp/quirks.c')
-rw-r--r-- | drivers/pnp/quirks.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/pnp/quirks.c b/drivers/pnp/quirks.c index 0bdf9b8a5e58..3d2e56094783 100644 --- a/drivers/pnp/quirks.c +++ b/drivers/pnp/quirks.c | |||
@@ -337,10 +337,8 @@ void pnp_fixup_device(struct pnp_dev *dev) | |||
337 | for (f = pnp_fixups; *f->id; f++) { | 337 | for (f = pnp_fixups; *f->id; f++) { |
338 | if (!compare_pnp_id(dev->id, f->id)) | 338 | if (!compare_pnp_id(dev->id, f->id)) |
339 | continue; | 339 | continue; |
340 | #ifdef DEBUG | 340 | pnp_dbg(&dev->dev, "%s: calling %pF\n", f->id, |
341 | dev_dbg(&dev->dev, "%s: calling ", f->id); | 341 | f->quirk_function); |
342 | print_fn_descriptor_symbol("%s\n", f->quirk_function); | ||
343 | #endif | ||
344 | f->quirk_function(dev); | 342 | f->quirk_function(dev); |
345 | } | 343 | } |
346 | } | 344 | } |