evsci.c (a2fd4b4b4e2884405c54a91514b0fad3853aea01) evsci.c (c53ae3a60c2494a160140d09637f543562626365)
1/*******************************************************************************
2 *
3 * Module Name: evsci - System Control Interrupt configuration and
4 * legacy to ACPI mode state transition functions
5 *
6 ******************************************************************************/
7
8/*

--- 73 unchanged lines hidden (view full) ---

82
83 /* Invoke all host-installed SCI handlers */
84
85 sci_handler = acpi_gbl_sci_handler_list;
86 while (sci_handler) {
87
88 /* Invoke the installed handler (at interrupt level) */
89
1/*******************************************************************************
2 *
3 * Module Name: evsci - System Control Interrupt configuration and
4 * legacy to ACPI mode state transition functions
5 *
6 ******************************************************************************/
7
8/*

--- 73 unchanged lines hidden (view full) ---

82
83 /* Invoke all host-installed SCI handlers */
84
85 sci_handler = acpi_gbl_sci_handler_list;
86 while (sci_handler) {
87
88 /* Invoke the installed handler (at interrupt level) */
89
90 int_status |= sci_handler->address((u32)acpi_gbl_FADT.
91 sci_interrupt,
92 sci_handler->context);
90 int_status |= sci_handler->address(sci_handler->context);
93
94 sci_handler = sci_handler->next;
95 }
96
97 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
98 return (int_status);
99}
100

--- 151 unchanged lines hidden ---
91
92 sci_handler = sci_handler->next;
93 }
94
95 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
96 return (int_status);
97}
98

--- 151 unchanged lines hidden ---