Lines Matching refs:status
101 acpi_status status; in acpi_hw_low_set_gpe() local
116 status = acpi_hw_read(&enable_mask, &gpe_register_info->enable_address); in acpi_hw_low_set_gpe()
117 if (ACPI_FAILURE(status)) { in acpi_hw_low_set_gpe()
118 return (status); in acpi_hw_low_set_gpe()
153 status = acpi_hw_write(enable_mask, &gpe_register_info->enable_address); in acpi_hw_low_set_gpe()
154 return (status); in acpi_hw_low_set_gpe()
172 acpi_status status; in acpi_hw_clear_gpe() local
190 status = acpi_hw_write(register_bit, in acpi_hw_clear_gpe()
193 return (status); in acpi_hw_clear_gpe()
217 acpi_status status; in acpi_hw_get_gpe_status() local
254 status = acpi_hw_read(&in_byte, &gpe_register_info->enable_address); in acpi_hw_get_gpe_status()
255 if (ACPI_FAILURE(status)) { in acpi_hw_get_gpe_status()
256 return (status); in acpi_hw_get_gpe_status()
265 status = acpi_hw_read(&in_byte, &gpe_register_info->status_address); in acpi_hw_get_gpe_status()
266 if (ACPI_FAILURE(status)) { in acpi_hw_get_gpe_status()
267 return (status); in acpi_hw_get_gpe_status()
297 acpi_status status; in acpi_hw_gpe_enable_write() local
300 status = acpi_hw_write(enable_mask, &gpe_register_info->enable_address); in acpi_hw_gpe_enable_write()
301 return (status); in acpi_hw_gpe_enable_write()
322 acpi_status status; in acpi_hw_disable_gpe_block() local
330 status = in acpi_hw_disable_gpe_block()
333 if (ACPI_FAILURE(status)) { in acpi_hw_disable_gpe_block()
334 return (status); in acpi_hw_disable_gpe_block()
359 acpi_status status; in acpi_hw_clear_gpe_block() local
367 status = in acpi_hw_clear_gpe_block()
370 if (ACPI_FAILURE(status)) { in acpi_hw_clear_gpe_block()
371 return (status); in acpi_hw_clear_gpe_block()
398 acpi_status status; in acpi_hw_enable_runtime_gpe_block() local
413 status = in acpi_hw_enable_runtime_gpe_block()
416 if (ACPI_FAILURE(status)) { in acpi_hw_enable_runtime_gpe_block()
417 return (status); in acpi_hw_enable_runtime_gpe_block()
444 acpi_status status; in acpi_hw_enable_wakeup_gpe_block() local
457 status = in acpi_hw_enable_wakeup_gpe_block()
460 if (ACPI_FAILURE(status)) { in acpi_hw_enable_wakeup_gpe_block()
461 return (status); in acpi_hw_enable_wakeup_gpe_block()
482 acpi_status status; in acpi_hw_disable_all_gpes() local
486 status = acpi_ev_walk_gpe_list(acpi_hw_disable_gpe_block, NULL); in acpi_hw_disable_all_gpes()
487 status = acpi_ev_walk_gpe_list(acpi_hw_clear_gpe_block, NULL); in acpi_hw_disable_all_gpes()
488 return_ACPI_STATUS(status); in acpi_hw_disable_all_gpes()
505 acpi_status status; in acpi_hw_enable_all_runtime_gpes() local
509 status = acpi_ev_walk_gpe_list(acpi_hw_enable_runtime_gpe_block, NULL); in acpi_hw_enable_all_runtime_gpes()
510 return_ACPI_STATUS(status); in acpi_hw_enable_all_runtime_gpes()
527 acpi_status status; in acpi_hw_enable_all_wakeup_gpes() local
531 status = acpi_ev_walk_gpe_list(acpi_hw_enable_wakeup_gpe_block, NULL); in acpi_hw_enable_all_wakeup_gpes()
532 return_ACPI_STATUS(status); in acpi_hw_enable_all_wakeup_gpes()