ACPI: un-export ACPI_WARNING() -- use printk(KERN_WARNING...)

Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
Len Brown
2006-06-26 23:04:31 -04:00
parent 64dedfb8fd
commit cece929697
9 changed files with 54 additions and 54 deletions
+6 -6
View File
@@ -214,13 +214,13 @@ int acpi_bus_set_power(acpi_handle handle, int state)
}
}
if (!device->power.states[state].flags.valid) {
ACPI_WARNING((AE_INFO, "Device does not support D%d", state));
printk(KERN_WARNING PREFIX "Device does not support D%d\n", state);
return_VALUE(-ENODEV);
}
if (device->parent && (state < device->parent->power.state)) {
ACPI_WARNING((AE_INFO,
printk(KERN_WARNING PREFIX
"Cannot set device to a higher-powered"
" state than parent"));
" state than parent\n");
return_VALUE(-ENODEV);
}
@@ -263,9 +263,9 @@ int acpi_bus_set_power(acpi_handle handle, int state)
end:
if (result)
ACPI_WARNING((AE_INFO,
"Transitioning device [%s] to D%d",
device->pnp.bus_id, state));
printk(KERN_WARNING PREFIX
"Transitioning device [%s] to D%d\n",
device->pnp.bus_id, state);
else
ACPI_DEBUG_PRINT((ACPI_DB_INFO,
"Device [%s] transitioned to D%d\n",