diff options
Diffstat (limited to 'drivers/acpi/events/evsci.c')
-rw-r--r-- | drivers/acpi/events/evsci.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/drivers/acpi/events/evsci.c b/drivers/acpi/events/evsci.c index 2a8b77877610..b5fc8055a473 100644 --- a/drivers/acpi/events/evsci.c +++ b/drivers/acpi/events/evsci.c | |||
@@ -115,10 +115,8 @@ u32 ACPI_SYSTEM_XFACE acpi_ev_gpe_xrupt_handler(void *context) | |||
115 | * if this interrupt handler is installed, ACPI is enabled. | 115 | * if this interrupt handler is installed, ACPI is enabled. |
116 | */ | 116 | */ |
117 | 117 | ||
118 | /* | 118 | /* GPEs: Check for and dispatch any GPEs that have occurred */ |
119 | * GPEs: | 119 | |
120 | * Check for and dispatch any GPEs that have occurred | ||
121 | */ | ||
122 | interrupt_handled |= acpi_ev_gpe_detect(gpe_xrupt_list); | 120 | interrupt_handled |= acpi_ev_gpe_detect(gpe_xrupt_list); |
123 | 121 | ||
124 | return_UINT32(interrupt_handled); | 122 | return_UINT32(interrupt_handled); |
@@ -158,11 +156,11 @@ u32 acpi_ev_install_sci_handler(void) | |||
158 | * RETURN: E_OK if handler uninstalled OK, E_ERROR if handler was not | 156 | * RETURN: E_OK if handler uninstalled OK, E_ERROR if handler was not |
159 | * installed to begin with | 157 | * installed to begin with |
160 | * | 158 | * |
161 | * DESCRIPTION: Remove the SCI interrupt handler. No further SCIs will be | 159 | * DESCRIPTION: Remove the SCI interrupt handler. No further SCIs will be |
162 | * taken. | 160 | * taken. |
163 | * | 161 | * |
164 | * Note: It doesn't seem important to disable all events or set the event | 162 | * Note: It doesn't seem important to disable all events or set the event |
165 | * enable registers to their original values. The OS should disable | 163 | * enable registers to their original values. The OS should disable |
166 | * the SCI interrupt level when the handler is removed, so no more | 164 | * the SCI interrupt level when the handler is removed, so no more |
167 | * events will come in. | 165 | * events will come in. |
168 | * | 166 | * |