Lines Matching refs:status

36 	acpi_status status;
51 status = acpi_ev_fixed_event_initialize();
52 if (ACPI_FAILURE(status)) {
53 ACPI_EXCEPTION((AE_INFO, status,
55 return_ACPI_STATUS(status);
58 status = acpi_ev_gpe_initialize();
59 if (ACPI_FAILURE(status)) {
60 ACPI_EXCEPTION((AE_INFO, status,
62 return_ACPI_STATUS(status);
65 return_ACPI_STATUS(status);
82 acpi_status status;
94 status = acpi_ev_install_sci_handler();
95 if (ACPI_FAILURE(status)) {
96 ACPI_EXCEPTION((AE_INFO, status,
98 return_ACPI_STATUS(status);
103 status = acpi_ev_init_global_lock_handler();
104 if (ACPI_FAILURE(status)) {
105 ACPI_EXCEPTION((AE_INFO, status,
107 return_ACPI_STATUS(status);
111 return_ACPI_STATUS(status);
129 acpi_status status;
142 status =
145 if (ACPI_FAILURE(status)) {
146 return (status);
162 * DESCRIPTION: Checks the PM status register for active fixed events
172 acpi_status status;
177 * Read the fixed feature status and enable registers, as all the cases
180 status = acpi_hw_register_read(ACPI_REGISTER_PM1_STATUS, &fixed_status);
181 status |=
183 if (ACPI_FAILURE(status)) {
201 /* Both the status and enable bits must be on for this event */
233 * DESCRIPTION: Clears the status bit for the requested event, calls the
245 /* Clear the status bit */
280 * DESCRIPTION: Checks the PM status register for active fixed events
286 acpi_status status;
291 status = acpi_hw_register_read(ACPI_REGISTER_PM1_ENABLE, &in_enable);
292 if (ACPI_FAILURE(status)) {
296 status = acpi_hw_register_read(ACPI_REGISTER_PM1_STATUS, &in_status);
297 if (ACPI_FAILURE(status)) {
306 /* Both the status and enable bits must be on for this event */