diff options
author | Bob Moore <robert.moore@intel.com> | 2013-01-11 07:08:51 -0500 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2013-01-11 07:08:51 -0500 |
commit | 42f8fb75c43cc67f06424f991009b3af674f93eb (patch) | |
tree | 01821d5eca5f97d474bee62e7f92fe481adb31b8 /drivers/acpi/acpica/acevents.h | |
parent | 4f8429166818dd615891990040ce13373893ee9a (diff) |
ACPICA: Source restructuring: split large files into 8 new files.
Created logical splits for eight new files. Improves modularity
and configurability.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lv Zheng <lv.zheng@intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/acpi/acpica/acevents.h')
-rw-r--r-- | drivers/acpi/acpica/acevents.h | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/drivers/acpi/acpica/acevents.h b/drivers/acpi/acpica/acevents.h index e975c6720448..35a2cbce467b 100644 --- a/drivers/acpi/acpica/acevents.h +++ b/drivers/acpi/acpica/acevents.h | |||
@@ -158,10 +158,23 @@ acpi_ev_delete_gpe_handlers(struct acpi_gpe_xrupt_info *gpe_xrupt_info, | |||
158 | void *context); | 158 | void *context); |
159 | 159 | ||
160 | /* | 160 | /* |
161 | * evregion - Address Space handling | 161 | * evhandler - Address space handling |
162 | */ | 162 | */ |
163 | u8 | ||
164 | acpi_ev_has_default_handler(struct acpi_namespace_node *node, | ||
165 | acpi_adr_space_type space_id); | ||
166 | |||
163 | acpi_status acpi_ev_install_region_handlers(void); | 167 | acpi_status acpi_ev_install_region_handlers(void); |
164 | 168 | ||
169 | acpi_status | ||
170 | acpi_ev_install_space_handler(struct acpi_namespace_node *node, | ||
171 | acpi_adr_space_type space_id, | ||
172 | acpi_adr_space_handler handler, | ||
173 | acpi_adr_space_setup setup, void *context); | ||
174 | |||
175 | /* | ||
176 | * evregion - Operation region support | ||
177 | */ | ||
165 | acpi_status acpi_ev_initialize_op_regions(void); | 178 | acpi_status acpi_ev_initialize_op_regions(void); |
166 | 179 | ||
167 | acpi_status | 180 | acpi_status |
@@ -180,12 +193,6 @@ acpi_ev_detach_region(union acpi_operand_object *region_obj, | |||
180 | u8 acpi_ns_is_locked); | 193 | u8 acpi_ns_is_locked); |
181 | 194 | ||
182 | acpi_status | 195 | acpi_status |
183 | acpi_ev_install_space_handler(struct acpi_namespace_node *node, | ||
184 | acpi_adr_space_type space_id, | ||
185 | acpi_adr_space_handler handler, | ||
186 | acpi_adr_space_setup setup, void *context); | ||
187 | |||
188 | acpi_status | ||
189 | acpi_ev_execute_reg_methods(struct acpi_namespace_node *node, | 196 | acpi_ev_execute_reg_methods(struct acpi_namespace_node *node, |
190 | acpi_adr_space_type space_id); | 197 | acpi_adr_space_type space_id); |
191 | 198 | ||