The patch titled pnp: fix two messages in manager.c has been added to the -mm tree. Its filename is pnp-fix-two-messages-in-managerc.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this From: Jan Engelhardt <jengelh@xxxxxx> The wording of two messages in drivers/pnp/manager.c is incorrect. Fix that. Signed-off-by: Jan Engelhardt <jengelh@xxxxxx> Acked-by: Pavel Machek <pavel@xxxxxxx> Signed-off-by: Rafael J. Wysocki <rjw@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/pnp/manager.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/pnp/manager.c~pnp-fix-two-messages-in-managerc drivers/pnp/manager.c --- devel/drivers/pnp/manager.c~pnp-fix-two-messages-in-managerc 2006-04-16 17:45:42.000000000 -0700 +++ devel-akpm/drivers/pnp/manager.c 2006-04-16 17:45:42.000000000 -0700 @@ -483,7 +483,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; } @@ -507,7 +507,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) { _ Patches currently in -mm which might be from jengelh@xxxxxx are pnp-fix-two-messages-in-managerc.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html