diff options
author | Len Brown <len.brown@intel.com> | 2006-07-09 22:33:26 +0200 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2006-07-10 05:30:00 +0200 |
commit | af4f949c6b4ffa5119aad980626e5b04daca961b (patch) | |
tree | 4cc9dcce0582c5ab5551777f8fad671d79a553c7 | |
parent | [PATCH] i386: use thread_info flags for debug regs and IO bitmaps (diff) | |
download | linux-af4f949c6b4ffa5119aad980626e5b04daca961b.tar.xz linux-af4f949c6b4ffa5119aad980626e5b04daca961b.zip |
ACPI: "Device `[%s]' is not power manageable" make message debug only
Signed-off-by: Len Brown <len.brown@intel.com>
-rw-r--r-- | drivers/acpi/bus.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/acpi/bus.c b/drivers/acpi/bus.c index ea5a0496a4fd..b2977695e120 100644 --- a/drivers/acpi/bus.c +++ b/drivers/acpi/bus.c @@ -192,8 +192,8 @@ 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", - device->kobj.name); + ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Device `[%s]' is not power manageable", + device->kobj.name)); return -ENODEV; } /* |