diff options
Diffstat (limited to 'drivers/acpi/events/evsci.c')
| -rw-r--r-- | drivers/acpi/events/evsci.c | 77 | 
1 files changed, 26 insertions, 51 deletions
diff --git a/drivers/acpi/events/evsci.c b/drivers/acpi/events/evsci.c index f3123c26ae9..14183597700 100644 --- a/drivers/acpi/events/evsci.c +++ b/drivers/acpi/events/evsci.c @@ -45,16 +45,11 @@  #include <acpi/acpi.h>  #include <acpi/acevents.h> -  #define _COMPONENT          ACPI_EVENTS -	 ACPI_MODULE_NAME    ("evsci") +ACPI_MODULE_NAME("evsci")  /* Local prototypes */ - -static u32 ACPI_SYSTEM_XFACE -acpi_ev_sci_xrupt_handler ( -	void                            *context); - +static u32 ACPI_SYSTEM_XFACE acpi_ev_sci_xrupt_handler(void *context);  /*******************************************************************************   * @@ -69,17 +64,13 @@ acpi_ev_sci_xrupt_handler (   *   ******************************************************************************/ -static u32 ACPI_SYSTEM_XFACE -acpi_ev_sci_xrupt_handler ( -	void                            *context) +static u32 ACPI_SYSTEM_XFACE acpi_ev_sci_xrupt_handler(void *context)  { -	struct acpi_gpe_xrupt_info      *gpe_xrupt_list = context; -	u32                             interrupt_handled = ACPI_INTERRUPT_NOT_HANDLED; - +	struct acpi_gpe_xrupt_info *gpe_xrupt_list = context; +	u32 interrupt_handled = ACPI_INTERRUPT_NOT_HANDLED;  	ACPI_FUNCTION_TRACE("ev_sci_xrupt_handler"); -  	/*  	 * We are guaranteed by the ACPI CA initialization/shutdown code that  	 * if this interrupt handler is installed, ACPI is enabled. @@ -89,18 +80,17 @@ acpi_ev_sci_xrupt_handler (  	 * Fixed Events:  	 * Check for and dispatch any Fixed Events that have occurred  	 */ -	interrupt_handled |= acpi_ev_fixed_event_detect (); +	interrupt_handled |= acpi_ev_fixed_event_detect();  	/*  	 * General Purpose Events:  	 * Check for and dispatch any GPEs that have occurred  	 */ -	interrupt_handled |= acpi_ev_gpe_detect (gpe_xrupt_list); +	interrupt_handled |= acpi_ev_gpe_detect(gpe_xrupt_list); -	return_VALUE (interrupt_handled); +	return_VALUE(interrupt_handled);  } -  /*******************************************************************************   *   * FUNCTION:    acpi_ev_gpe_xrupt_handler @@ -113,17 +103,13 @@ acpi_ev_sci_xrupt_handler (   *   ******************************************************************************/ -u32 ACPI_SYSTEM_XFACE -acpi_ev_gpe_xrupt_handler ( -	void                            *context) +u32 ACPI_SYSTEM_XFACE acpi_ev_gpe_xrupt_handler(void *context)  { -	struct acpi_gpe_xrupt_info      *gpe_xrupt_list = context; -	u32                             interrupt_handled = ACPI_INTERRUPT_NOT_HANDLED; - +	struct acpi_gpe_xrupt_info *gpe_xrupt_list = context; +	u32 interrupt_handled = ACPI_INTERRUPT_NOT_HANDLED;  	ACPI_FUNCTION_TRACE("ev_gpe_xrupt_handler"); -  	/*  	 * We are guaranteed by the ACPI CA initialization/shutdown code that  	 * if this interrupt handler is installed, ACPI is enabled. @@ -133,12 +119,11 @@ acpi_ev_gpe_xrupt_handler (  	 * GPEs:  	 * Check for and dispatch any GPEs that have occurred  	 */ -	interrupt_handled |= acpi_ev_gpe_detect (gpe_xrupt_list); +	interrupt_handled |= acpi_ev_gpe_detect(gpe_xrupt_list); -	return_VALUE (interrupt_handled); +	return_VALUE(interrupt_handled);  } -  /******************************************************************************   *   * FUNCTION:    acpi_ev_install_sci_handler @@ -151,22 +136,18 @@ acpi_ev_gpe_xrupt_handler (   *   ******************************************************************************/ -u32 -acpi_ev_install_sci_handler ( -	void) +u32 acpi_ev_install_sci_handler(void)  { -	u32                             status = AE_OK; - +	u32 status = AE_OK; -	ACPI_FUNCTION_TRACE ("ev_install_sci_handler"); +	ACPI_FUNCTION_TRACE("ev_install_sci_handler"); - -	status = acpi_os_install_interrupt_handler ((u32) acpi_gbl_FADT->sci_int, -			   acpi_ev_sci_xrupt_handler, acpi_gbl_gpe_xrupt_list_head); -	return_ACPI_STATUS (status); +	status = acpi_os_install_interrupt_handler((u32) acpi_gbl_FADT->sci_int, +						   acpi_ev_sci_xrupt_handler, +						   acpi_gbl_gpe_xrupt_list_head); +	return_ACPI_STATUS(status);  } -  /******************************************************************************   *   * FUNCTION:    acpi_ev_remove_sci_handler @@ -186,22 +167,16 @@ acpi_ev_install_sci_handler (   *   ******************************************************************************/ -acpi_status -acpi_ev_remove_sci_handler ( -	void) +acpi_status acpi_ev_remove_sci_handler(void)  { -	acpi_status                     status; - - -	ACPI_FUNCTION_TRACE ("ev_remove_sci_handler"); +	acpi_status status; +	ACPI_FUNCTION_TRACE("ev_remove_sci_handler");  	/* Just let the OS remove the handler and disable the level */ -	status = acpi_os_remove_interrupt_handler ((u32) acpi_gbl_FADT->sci_int, -			   acpi_ev_sci_xrupt_handler); +	status = acpi_os_remove_interrupt_handler((u32) acpi_gbl_FADT->sci_int, +						  acpi_ev_sci_xrupt_handler); -	return_ACPI_STATUS (status); +	return_ACPI_STATUS(status);  } - -  |