aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>2013-04-23 09:37:18 -0400
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2013-04-23 10:25:02 -0400
commit565b129736c44359518991aa899490926e6e5ec3 (patch)
treeb6c40ccdd4a174862c96a00500652a673e92b960
parent60d509fa6a9c4653a86ad830e4c4b30360b23f0e (diff)
isapnp: remove debug leftovers
There are couple of #if 0's to avoid debug printing. Remove them. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r--drivers/pnp/isapnp/core.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/drivers/pnp/isapnp/core.c b/drivers/pnp/isapnp/core.c
index 918d5f044865..cf88f9b62445 100644
--- a/drivers/pnp/isapnp/core.c
+++ b/drivers/pnp/isapnp/core.c
@@ -379,10 +379,6 @@ static int __init isapnp_read_tag(unsigned char *type, unsigned short *size)
379 *type = (tag >> 3) & 0x0f; 379 *type = (tag >> 3) & 0x0f;
380 *size = tag & 0x07; 380 *size = tag & 0x07;
381 } 381 }
382#if 0
383 printk(KERN_DEBUG "tag = 0x%x, type = 0x%x, size = %i\n", tag, *type,
384 *size);
385#endif
386 if (*type == 0xff && *size == 0xffff) /* probably invalid data */ 382 if (*type == 0xff && *size == 0xffff) /* probably invalid data */
387 return -1; 383 return -1;
388 return 0; 384 return 0;
@@ -813,13 +809,6 @@ static int __init isapnp_build_device_list(void)
813 if (!card) 809 if (!card)
814 continue; 810 continue;
815 811
816#if 0
817 dev_info(&card->dev,
818 "vendor: %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x\n",
819 header[0], header[1], header[2], header[3], header[4],
820 header[5], header[6], header[7], header[8]);
821 dev_info(&card->dev, "checksum = %#x\n", checksum);
822#endif
823 INIT_LIST_HEAD(&card->devices); 812 INIT_LIST_HEAD(&card->devices);
824 card->serial = 813 card->serial =
825 (header[7] << 24) | (header[6] << 16) | (header[5] << 8) | 814 (header[7] << 24) | (header[6] << 16) | (header[5] << 8) |