diff options
author | Bob Moore <robert.moore@intel.com> | 2008-11-12 03:01:56 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2008-12-29 22:38:37 -0500 |
commit | 9f15fc666ef54afc7aff31dfa31edecf00e0d81a (patch) | |
tree | b7fee548a54ac5c1a599035e16160a9ac2162e45 /drivers/acpi/events/evsci.c | |
parent | 009c4cbe99bea2da53f29ad685975a36f38c001c (diff) |
ACPICA: Reformat comments, no functional changes
Reformat comments to use fewer lines.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lin Ming <ming.m.lin@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
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 | * |