From: Jae-hyeon Park Date: Sat, 1 Jul 2006 11:35:47 +0000 (-0700) Subject: [PATCH] ACPI: fix not power-manageable device message X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=345a6e6aea43cd544c682601926bbd11c09c999b;p=linux-beck.git [PATCH] ACPI: fix not power-manageable device message Fix typo in message. Signed-off-by: Randy Dunlap Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/acpi/bus.c b/drivers/acpi/bus.c index dec044c04273..ea5a0496a4fd 100644 --- a/drivers/acpi/bus.c +++ b/drivers/acpi/bus.c @@ -192,7 +192,7 @@ int acpi_bus_set_power(acpi_handle handle, int state) /* Make sure this is a valid target state */ if (!device->flags.power_manageable) { - printk(KERN_DEBUG "Device `[%s]is not power manageable", + printk(KERN_DEBUG "Device `[%s]' is not power manageable", device->kobj.name); return -ENODEV; }