Re: Suspend to disk (some PATCH)

From: Jan Engelhardt
Date: Fri Apr 14 2006 - 17:58:19 EST


>>
>> pnp: Device 00:08 does not supported activation.
>> pnp: Device 00:09 does not supported activation.

Signed-off-by: Jan Engelhardt <jengelh@xxxxxx>

diff --fast -Ndpru linux-2.6.17-rc1~/drivers/pnp/manager.c linux-2.6.17-rc1-csc/drivers/pnp/manager.c
--- linux-2.6.17-rc1~/drivers/pnp/manager.c 2006-04-03 05:22:10.000000000 +0200
+++ linux-2.6.17-rc1-csc/drivers/pnp/manager.c 2006-04-14 23:56:12.592234000 +0200
@@ -479,7 +479,7 @@ int pnp_auto_config_dev(struct pnp_dev *
int pnp_start_dev(struct pnp_dev *dev)
{
if (!pnp_can_write(dev)) {
- pnp_info("Device %s does not supported activation.", dev->dev.bus_id);
+ pnp_info("Device %s does not support activation.", dev->dev.bus_id);
return -EINVAL;
}

@@ -503,7 +503,7 @@ int pnp_start_dev(struct pnp_dev *dev)
int pnp_stop_dev(struct pnp_dev *dev)
{
if (!pnp_can_disable(dev)) {
- pnp_info("Device %s does not supported disabling.", dev->dev.bus_id);
+ pnp_info("Device %s does not support disabling.", dev->dev.bus_id);
return -EINVAL;
}
if (dev->protocol->disable(dev)<0) {
#<<eof>>



Jan Engelhardt
--
-
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/