diff options
| author | Andy Grover <agrover@groveronline.com> | 2003-04-22 20:57:23 -0700 |
|---|---|---|
| committer | Andy Grover <agrover@groveronline.com> | 2003-04-22 20:57:23 -0700 |
| commit | 05304b9d15febc4e5b998e9bdc307ee925a661b3 (patch) | |
| tree | f95cc560f1085da64a1b4670c180969179020d0f | |
| parent | 608c858ef85a6860b4eea31161b0534776303fbe (diff) | |
ACPI: Indicate whether we handled the interrupt or not
| -rw-r--r-- | drivers/acpi/osl.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/acpi/osl.c b/drivers/acpi/osl.c index e48db0c67036..c78ea7e34bb6 100644 --- a/drivers/acpi/osl.c +++ b/drivers/acpi/osl.c @@ -237,9 +237,7 @@ acpi_os_table_override (struct acpi_table_header *existing_table, static irqreturn_t acpi_irq(int irq, void *dev_id, struct pt_regs *regs) { - (*acpi_irq_handler)(acpi_irq_context); - /* FIXME!! We really should check that the irq was really ours! */ - return IRQ_HANDLED; + return (*acpi_irq_handler)(acpi_irq_context); } acpi_status |
