Lines Matching refs:status

67 	acpi_status status = AE_OK;  in acpi_hw_low_set_gpe()  local
82 status = acpi_hw_read(&enable_mask, &gpe_register_info->enable_address); in acpi_hw_low_set_gpe()
83 if (ACPI_FAILURE(status)) { in acpi_hw_low_set_gpe()
84 return (status); in acpi_hw_low_set_gpe()
121 status = in acpi_hw_low_set_gpe()
125 return (status); in acpi_hw_low_set_gpe()
143 acpi_status status; in acpi_hw_clear_gpe() local
161 status = in acpi_hw_clear_gpe()
163 return (status); in acpi_hw_clear_gpe()
187 acpi_status status; in acpi_hw_get_gpe_status() local
230 status = acpi_hw_read(&in_byte, &gpe_register_info->enable_address); in acpi_hw_get_gpe_status()
231 if (ACPI_FAILURE(status)) { in acpi_hw_get_gpe_status()
232 return (status); in acpi_hw_get_gpe_status()
241 status = acpi_hw_read(&in_byte, &gpe_register_info->status_address); in acpi_hw_get_gpe_status()
242 if (ACPI_FAILURE(status)) { in acpi_hw_get_gpe_status()
243 return (status); in acpi_hw_get_gpe_status()
273 acpi_status status; in acpi_hw_gpe_enable_write() local
277 status = acpi_hw_write(enable_mask, &gpe_register_info->enable_address); in acpi_hw_gpe_enable_write()
278 return (status); in acpi_hw_gpe_enable_write()
299 acpi_status status; in acpi_hw_disable_gpe_block() local
307 status = in acpi_hw_disable_gpe_block()
310 if (ACPI_FAILURE(status)) { in acpi_hw_disable_gpe_block()
311 return (status); in acpi_hw_disable_gpe_block()
336 acpi_status status; in acpi_hw_clear_gpe_block() local
344 status = in acpi_hw_clear_gpe_block()
347 if (ACPI_FAILURE(status)) { in acpi_hw_clear_gpe_block()
348 return (status); in acpi_hw_clear_gpe_block()
375 acpi_status status; in acpi_hw_enable_runtime_gpe_block() local
393 status = in acpi_hw_enable_runtime_gpe_block()
395 if (ACPI_FAILURE(status)) { in acpi_hw_enable_runtime_gpe_block()
396 return (status); in acpi_hw_enable_runtime_gpe_block()
423 acpi_status status; in acpi_hw_enable_wakeup_gpe_block() local
436 status = in acpi_hw_enable_wakeup_gpe_block()
439 if (ACPI_FAILURE(status)) { in acpi_hw_enable_wakeup_gpe_block()
440 return (status); in acpi_hw_enable_wakeup_gpe_block()
461 acpi_status status; in acpi_hw_disable_all_gpes() local
465 status = acpi_ev_walk_gpe_list(acpi_hw_disable_gpe_block, NULL); in acpi_hw_disable_all_gpes()
466 return_ACPI_STATUS(status); in acpi_hw_disable_all_gpes()
483 acpi_status status; in acpi_hw_enable_all_runtime_gpes() local
487 status = acpi_ev_walk_gpe_list(acpi_hw_enable_runtime_gpe_block, NULL); in acpi_hw_enable_all_runtime_gpes()
488 return_ACPI_STATUS(status); in acpi_hw_enable_all_runtime_gpes()
505 acpi_status status; in acpi_hw_enable_all_wakeup_gpes() local
509 status = acpi_ev_walk_gpe_list(acpi_hw_enable_wakeup_gpe_block, NULL); in acpi_hw_enable_all_wakeup_gpes()
510 return_ACPI_STATUS(status); in acpi_hw_enable_all_wakeup_gpes()