RE: [PATCH 1/3] ACPI: Using correct irq when uninstalling acpi irq handler

2015-10-24 Thread Chen, Yu C
.kernel.org; > sta...@vger.kernel.org > Subject: Re: [PATCH 1/3] ACPI: Using correct irq when uninstalling acpi irq > handler > > On Thursday, October 22, 2015 08:03:08 PM Chen Yu wrote: > > Currently when system is trying to uninstall the acpi irq handler, it > > uses the

Re: [PATCH 1/3] ACPI: Using correct irq when uninstalling acpi irq handler

2015-10-24 Thread Rafael J. Wysocki
On Thursday, October 22, 2015 08:03:08 PM Chen Yu wrote: > Currently when system is trying to uninstall the acpi irq > handler, it uses the acpi_gbl_FADT.sci_interrupt directly. > But acpi irq handler is actually installed by mapped irq > in acpi_os_install_interrupt_handler, so this patch fixes >

[PATCH 1/3] ACPI: Using correct irq when uninstalling acpi irq handler

2015-10-22 Thread Chen Yu
Currently when system is trying to uninstall the acpi irq handler, it uses the acpi_gbl_FADT.sci_interrupt directly. But acpi irq handler is actually installed by mapped irq in acpi_os_install_interrupt_handler, so this patch fixes this problem by using the mapped irq returned from acpi_gsi_to_irq.