Commit 7a9d74e7 authored by Hans de Goede's avatar Hans de Goede Committed by Rafael J. Wysocki

ACPICA: include/acpi/acpixf.h: Fix indentation

A bunch of the functions declared in include/acpi/acpixf.h have their
name aligned a space after the '(' of e.g. the
`ACPI_EXTERNAL_RETURN_STATUS(acpi_status` line above rather then being
directly aligned after the '('.

This breaks applying patches generated from the ACPICA upstream git,
remove the extra space before the function-names and all the arguments
to fix this.
Signed-off-by: default avatarHans de Goede <hdegoede@redhat.com>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent 7dfb216e
...@@ -589,82 +589,82 @@ ACPI_EXTERNAL_RETURN_STATUS(acpi_status ...@@ -589,82 +589,82 @@ ACPI_EXTERNAL_RETURN_STATUS(acpi_status
acpi_install_initialization_handler acpi_install_initialization_handler
(acpi_init_handler handler, u32 function)) (acpi_init_handler handler, u32 function))
ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
acpi_install_sci_handler(acpi_sci_handler acpi_install_sci_handler(acpi_sci_handler
address, address,
void *context)) void *context))
ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
acpi_remove_sci_handler(acpi_sci_handler
address))
ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
acpi_install_global_event_handler acpi_remove_sci_handler(acpi_sci_handler
(acpi_gbl_event_handler handler, address))
void *context))
ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
acpi_install_fixed_event_handler(u32 acpi_install_global_event_handler
acpi_event, (acpi_gbl_event_handler handler,
acpi_event_handler void *context))
handler,
void
*context))
ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
acpi_remove_fixed_event_handler(u32 acpi_event, acpi_install_fixed_event_handler(u32
acpi_event,
acpi_event_handler acpi_event_handler
handler)) handler,
ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status void
acpi_install_gpe_handler(acpi_handle *context))
gpe_device,
u32 gpe_number,
u32 type,
acpi_gpe_handler
address,
void *context))
ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
acpi_install_gpe_raw_handler(acpi_handle acpi_remove_fixed_event_handler(u32 acpi_event,
gpe_device, acpi_event_handler
u32 gpe_number, handler))
u32 type,
acpi_gpe_handler
address,
void *context))
ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
acpi_remove_gpe_handler(acpi_handle gpe_device, acpi_install_gpe_handler(acpi_handle
gpe_device,
u32 gpe_number, u32 gpe_number,
u32 type,
acpi_gpe_handler acpi_gpe_handler
address)) address,
ACPI_EXTERNAL_RETURN_STATUS(acpi_status
acpi_install_notify_handler(acpi_handle device,
u32 handler_type,
acpi_notify_handler
handler,
void *context)) void *context))
ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
acpi_install_gpe_raw_handler(acpi_handle
gpe_device,
u32 gpe_number,
u32 type,
acpi_gpe_handler
address,
void *context))
ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status
acpi_remove_gpe_handler(acpi_handle gpe_device,
u32 gpe_number,
acpi_gpe_handler
address))
ACPI_EXTERNAL_RETURN_STATUS(acpi_status ACPI_EXTERNAL_RETURN_STATUS(acpi_status
acpi_remove_notify_handler(acpi_handle device, acpi_install_notify_handler(acpi_handle device,
u32 handler_type, u32 handler_type,
acpi_notify_handler acpi_notify_handler
handler)) handler,
ACPI_EXTERNAL_RETURN_STATUS(acpi_status void *context))
acpi_install_address_space_handler(acpi_handle ACPI_EXTERNAL_RETURN_STATUS(acpi_status
device, acpi_remove_notify_handler(acpi_handle device,
acpi_adr_space_type u32 handler_type,
space_id, acpi_notify_handler
acpi_adr_space_handler handler))
handler, ACPI_EXTERNAL_RETURN_STATUS(acpi_status
acpi_adr_space_setup acpi_install_address_space_handler(acpi_handle
setup,
void *context))
ACPI_EXTERNAL_RETURN_STATUS(acpi_status
acpi_remove_address_space_handler(acpi_handle
device, device,
acpi_adr_space_type acpi_adr_space_type
space_id, space_id,
acpi_adr_space_handler acpi_adr_space_handler
handler)) handler,
ACPI_EXTERNAL_RETURN_STATUS(acpi_status acpi_adr_space_setup
acpi_install_exception_handler setup,
(acpi_exception_handler handler)) void *context))
ACPI_EXTERNAL_RETURN_STATUS(acpi_status ACPI_EXTERNAL_RETURN_STATUS(acpi_status
acpi_install_interface_handler acpi_remove_address_space_handler(acpi_handle
(acpi_interface_handler handler)) device,
acpi_adr_space_type
space_id,
acpi_adr_space_handler
handler))
ACPI_EXTERNAL_RETURN_STATUS(acpi_status
acpi_install_exception_handler
(acpi_exception_handler handler))
ACPI_EXTERNAL_RETURN_STATUS(acpi_status
acpi_install_interface_handler
(acpi_interface_handler handler))
/* /*
* Global Lock interfaces * Global Lock interfaces
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment