diff options
Diffstat (limited to 'drivers/acpi/events/evxface.c')
-rw-r--r-- | drivers/acpi/events/evxface.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/drivers/acpi/events/evxface.c b/drivers/acpi/events/evxface.c index b2f69b1ac4b5..b38b39dde543 100644 --- a/drivers/acpi/events/evxface.c +++ b/drivers/acpi/events/evxface.c | |||
@@ -143,8 +143,8 @@ acpi_install_fixed_event_handler(u32 event, | |||
143 | if (ACPI_SUCCESS(status)) | 143 | if (ACPI_SUCCESS(status)) |
144 | status = acpi_enable_event(event, 0); | 144 | status = acpi_enable_event(event, 0); |
145 | if (ACPI_FAILURE(status)) { | 145 | if (ACPI_FAILURE(status)) { |
146 | ACPI_REPORT_WARNING(("Could not enable fixed event %X\n", | 146 | ACPI_WARNING((AE_INFO, "Could not enable fixed event %X", |
147 | event)); | 147 | event)); |
148 | 148 | ||
149 | /* Remove the handler */ | 149 | /* Remove the handler */ |
150 | 150 | ||
@@ -204,7 +204,9 @@ acpi_remove_fixed_event_handler(u32 event, acpi_event_handler handler) | |||
204 | acpi_gbl_fixed_event_handlers[event].context = NULL; | 204 | acpi_gbl_fixed_event_handlers[event].context = NULL; |
205 | 205 | ||
206 | if (ACPI_FAILURE(status)) { | 206 | if (ACPI_FAILURE(status)) { |
207 | ACPI_REPORT_WARNING(("Could not write to fixed event enable register %X\n", event)); | 207 | ACPI_WARNING((AE_INFO, |
208 | "Could not write to fixed event enable register %X", | ||
209 | event)); | ||
208 | } else { | 210 | } else { |
209 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Disabled fixed event %X\n", | 211 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Disabled fixed event %X\n", |
210 | event)); | 212 | event)); |
@@ -561,7 +563,7 @@ acpi_install_gpe_handler(acpi_handle gpe_device, | |||
561 | struct acpi_gpe_event_info *gpe_event_info; | 563 | struct acpi_gpe_event_info *gpe_event_info; |
562 | struct acpi_handler_info *handler; | 564 | struct acpi_handler_info *handler; |
563 | acpi_status status; | 565 | acpi_status status; |
564 | acpi_native_uint flags; | 566 | acpi_cpu_flags flags; |
565 | 567 | ||
566 | ACPI_FUNCTION_TRACE("acpi_install_gpe_handler"); | 568 | ACPI_FUNCTION_TRACE("acpi_install_gpe_handler"); |
567 | 569 | ||
@@ -652,7 +654,7 @@ acpi_remove_gpe_handler(acpi_handle gpe_device, | |||
652 | struct acpi_gpe_event_info *gpe_event_info; | 654 | struct acpi_gpe_event_info *gpe_event_info; |
653 | struct acpi_handler_info *handler; | 655 | struct acpi_handler_info *handler; |
654 | acpi_status status; | 656 | acpi_status status; |
655 | acpi_native_uint flags; | 657 | acpi_cpu_flags flags; |
656 | 658 | ||
657 | ACPI_FUNCTION_TRACE("acpi_remove_gpe_handler"); | 659 | ACPI_FUNCTION_TRACE("acpi_remove_gpe_handler"); |
658 | 660 | ||