Commit 48670a1e authored by David Brownell's avatar David Brownell Committed by Linus Torvalds

[PATCH] reduce pnp syslog spam

Make some normal code paths in PNP stop issuing syslog spam.  Since PNP
issues calls regardless of device capablities, it's no surprise when some
of those devices don't support those calls!
Signed-off-by: default avatarDavid Brownell <dbrownell@users.sourceforge.net>
Cc: Adam Belay <ambx1@neo.rr.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent db98e0b4
...@@ -451,7 +451,7 @@ int pnp_auto_config_dev(struct pnp_dev *dev) ...@@ -451,7 +451,7 @@ int pnp_auto_config_dev(struct pnp_dev *dev)
return -EINVAL; return -EINVAL;
if(!pnp_can_configure(dev)) { if(!pnp_can_configure(dev)) {
pnp_info("Device %s does not support resource configuration.", dev->dev.bus_id); pnp_dbg("Device %s does not support resource configuration.", dev->dev.bus_id);
return -ENODEV; return -ENODEV;
} }
...@@ -482,7 +482,7 @@ int pnp_auto_config_dev(struct pnp_dev *dev) ...@@ -482,7 +482,7 @@ int pnp_auto_config_dev(struct pnp_dev *dev)
int pnp_start_dev(struct pnp_dev *dev) int pnp_start_dev(struct pnp_dev *dev)
{ {
if (!pnp_can_write(dev)) { if (!pnp_can_write(dev)) {
pnp_info("Device %s does not support activation.", dev->dev.bus_id); pnp_dbg("Device %s does not support activation.", dev->dev.bus_id);
return -EINVAL; return -EINVAL;
} }
...@@ -506,7 +506,7 @@ int pnp_start_dev(struct pnp_dev *dev) ...@@ -506,7 +506,7 @@ int pnp_start_dev(struct pnp_dev *dev)
int pnp_stop_dev(struct pnp_dev *dev) int pnp_stop_dev(struct pnp_dev *dev)
{ {
if (!pnp_can_disable(dev)) { if (!pnp_can_disable(dev)) {
pnp_info("Device %s does not support disabling.", dev->dev.bus_id); pnp_dbg("Device %s does not support disabling.", dev->dev.bus_id);
return -EINVAL; return -EINVAL;
} }
if (dev->protocol->disable(dev)<0) { if (dev->protocol->disable(dev)<0) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment