|
@@ -81,6 +81,7 @@ static struct workqueue_struct *kacpid_wq;
|
|
|
static struct workqueue_struct *kacpi_notify_wq;
|
|
|
static struct workqueue_struct *kacpi_hotplug_wq;
|
|
|
static bool acpi_os_initialized;
|
|
|
+unsigned int acpi_sci_irq = INVALID_ACPI_IRQ;
|
|
|
|
|
|
/*
|
|
|
* This list of permanent mappings is for memory that may be accessed from
|
|
@@ -856,17 +857,19 @@ acpi_os_install_interrupt_handler(u32 gsi, acpi_osd_handler handler,
|
|
|
acpi_irq_handler = NULL;
|
|
|
return AE_NOT_ACQUIRED;
|
|
|
}
|
|
|
+ acpi_sci_irq = irq;
|
|
|
|
|
|
return AE_OK;
|
|
|
}
|
|
|
|
|
|
-acpi_status acpi_os_remove_interrupt_handler(u32 irq, acpi_osd_handler handler)
|
|
|
+acpi_status acpi_os_remove_interrupt_handler(u32 gsi, acpi_osd_handler handler)
|
|
|
{
|
|
|
- if (irq != acpi_gbl_FADT.sci_interrupt)
|
|
|
+ if (gsi != acpi_gbl_FADT.sci_interrupt || !acpi_sci_irq_valid())
|
|
|
return AE_BAD_PARAMETER;
|
|
|
|
|
|
- free_irq(irq, acpi_irq);
|
|
|
+ free_irq(acpi_sci_irq, acpi_irq);
|
|
|
acpi_irq_handler = NULL;
|
|
|
+ acpi_sci_irq = INVALID_ACPI_IRQ;
|
|
|
|
|
|
return AE_OK;
|
|
|
}
|