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 =
146 if (ACPI_FAILURE(status)) {
147 return (status);
163 * DESCRIPTION: Checks the PM status register for active fixed events
173 acpi_status status;
178 * Read the fixed feature status and enable registers, as all the cases
181 status = acpi_hw_register_read(ACPI_REGISTER_PM1_STATUS, &fixed_status);
182 status |=
184 if (ACPI_FAILURE(status)) {
197 /* Both the status and enable bits must be on for this event */
229 * DESCRIPTION: Clears the status bit for the requested event, calls the
241 /* Clear the status bit */
276 * DESCRIPTION: Checks the PM status register for active fixed events
282 acpi_status status;
287 status = acpi_hw_register_read(ACPI_REGISTER_PM1_ENABLE, &in_enable);
288 if (ACPI_FAILURE(status)) {
292 status = acpi_hw_register_read(ACPI_REGISTER_PM1_STATUS, &in_status);
293 if (ACPI_FAILURE(status)) {
302 /* Both the status and enable bits must be on for this event */