Skip to content

Commit

Permalink
PNP: remove some uses of DEBUG ifdef
Browse files Browse the repository at this point in the history
Use scnprintf() to build up a buffer of PNP IDs to print.  This
makes the printk atomic and helps get rid of an #ifdef.

Also remove an "#ifdef DEBUG" from some debug functions.  The
functions only produce debug output, so it's OK to run the
function and just have the output be dropped at the end.

Signed-off-by: Bjorn Helgaas <[email protected]>
Signed-off-by: Andi Kleen <[email protected]>
Signed-off-by: Len Brown <[email protected]>
  • Loading branch information
Bjorn Helgaas authored and lenb committed Oct 11, 2008
1 parent 668b21d commit 2663f60
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 14 deletions.
18 changes: 8 additions & 10 deletions drivers/pnp/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,9 @@ int __pnp_add_device(struct pnp_dev *dev)
int pnp_add_device(struct pnp_dev *dev)
{
int ret;
char buf[128];
int len = 0;
struct pnp_id *id;

if (dev->card)
return -EINVAL;
Expand All @@ -193,17 +196,12 @@ int pnp_add_device(struct pnp_dev *dev)
if (ret)
return ret;

#ifdef CONFIG_PNP_DEBUG
{
struct pnp_id *id;
buf[0] = '\0';
for (id = dev->id; id; id = id->next)
len += scnprintf(buf + len, sizeof(buf) - len, " %s", id->id);

dev_printk(KERN_DEBUG, &dev->dev, "%s device, IDs",
dev->protocol->name);
for (id = dev->id; id; id = id->next)
printk(" %s", id->id);
printk(" (%s)\n", dev->active ? "active" : "disabled");
}
#endif
dev_dbg(&dev->dev, "%s device, IDs%s (%s)\n",
dev->protocol->name, buf, dev->active ? "active" : "disabled");
return 0;
}

Expand Down
4 changes: 0 additions & 4 deletions drivers/pnp/support.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ char *pnp_resource_type_name(struct resource *res)

void dbg_pnp_show_resources(struct pnp_dev *dev, char *desc)
{
#ifdef DEBUG
char buf[128];
int len;
struct pnp_resource *pnp_res;
Expand Down Expand Up @@ -118,7 +117,6 @@ void dbg_pnp_show_resources(struct pnp_dev *dev, char *desc)
}
dev_dbg(&dev->dev, "%s\n", buf);
}
#endif
}

char *pnp_option_priority_name(struct pnp_option *option)
Expand All @@ -136,7 +134,6 @@ char *pnp_option_priority_name(struct pnp_option *option)

void dbg_pnp_show_option(struct pnp_dev *dev, struct pnp_option *option)
{
#ifdef DEBUG
char buf[128];
int len = 0, i;
struct pnp_port *port;
Expand Down Expand Up @@ -209,5 +206,4 @@ void dbg_pnp_show_option(struct pnp_dev *dev, struct pnp_option *option)
break;
}
dev_dbg(&dev->dev, "%s\n", buf);
#endif
}

0 comments on commit 2663f60

Please sign in to comment.