diff options
author | Len Brown <len.brown@intel.com> | 2006-06-26 23:41:38 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2006-06-27 00:01:06 -0400 |
commit | 6468463abd7051fcc29f3ee7c931f9bbbb26f5a4 (patch) | |
tree | d18eae04fe6c8f7d257077cc6056cd9c6f424e0d /drivers/acpi/button.c | |
parent | cece92969762b8ed7930d4e23008b76b06411dee (diff) |
ACPI: un-export ACPI_ERROR() -- use printk(KERN_ERR...)
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/button.c')
-rw-r--r-- | drivers/acpi/button.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/acpi/button.c b/drivers/acpi/button.c index a8717da32a7a..63db284bb5cf 100644 --- a/drivers/acpi/button.c +++ b/drivers/acpi/button.c | |||
@@ -345,8 +345,8 @@ static int acpi_button_add(struct acpi_device *device) | |||
345 | sprintf(acpi_device_class(device), "%s/%s", | 345 | sprintf(acpi_device_class(device), "%s/%s", |
346 | ACPI_BUTTON_CLASS, ACPI_BUTTON_SUBCLASS_LID); | 346 | ACPI_BUTTON_CLASS, ACPI_BUTTON_SUBCLASS_LID); |
347 | } else { | 347 | } else { |
348 | ACPI_ERROR((AE_INFO, "Unsupported hid [%s]", | 348 | printk(KERN_ERR PREFIX "Unsupported hid [%s]\n", |
349 | acpi_device_hid(device))); | 349 | acpi_device_hid(device)); |
350 | result = -ENODEV; | 350 | result = -ENODEV; |
351 | goto end; | 351 | goto end; |
352 | } | 352 | } |