aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJae-hyeon Park <jhpark@tuhep.phys.tohoku.ac.jp>2006-07-01 04:35:47 -0700
committerLinus Torvalds <torvalds@g5.osdl.org>2006-07-01 09:55:58 -0700
commit345a6e6aea43cd544c682601926bbd11c09c999b (patch)
tree27c7c4a9b7559353f67839100fd6f0ecbd057c4a
parent929a40ec324e947d4ad14cc1ced785c104c560e2 (diff)
downloadlinux-2.6-klibc-clean-345a6e6aea43cd544c682601926bbd11c09c999b.tar.gz
[PATCH] ACPI: fix not power-manageable device message
Fix typo in message. Signed-off-by: Randy Dunlap <rdunlap@xenotime.net> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r--drivers/acpi/bus.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/bus.c b/drivers/acpi/bus.c
index dec044c04273de..ea5a0496a4fd9a 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;
}