Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ACPI: power: update error message

"Transitioning device [%s] to D%d" is not correct.
We print this line when we attempted to transition
the device, and it failed.

So instead, print
"Device [%s] failed to transition to D%d\n"

This can happen under two conditions:

1. acpi_power_transition() fails when trying to handle the
_ON/_OFF for associated power resource.

2. acpi_evaluate_object() on the explicit _PS0/_PS3
for that actual device could fail.

this change clarifies, but doesn't fix
http://bugzilla.kernel.org/show_bug.cgi?id=13243

Signed-off-by: Len Brown <len.brown@intel.com>

Len Brown ddc50b6a 413f81eb

+1 -1
+1 -1
drivers/acpi/bus.c
··· 312 312 end: 313 313 if (result) 314 314 printk(KERN_WARNING PREFIX 315 - "Transitioning device [%s] to D%d\n", 315 + "Device [%s] failed to transition to D%d\n", 316 316 device->pnp.bus_id, state); 317 317 else { 318 318 device->power.state = state;