mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-02-01 16:44:26 +00:00
xen/pci: Use 'acpi_gsi_to_irq' value unconditionally.
In the past we would only use the function's value if the returned value was not equal to 'acpi_sci_override_gsi'. Meaning that the INT_SRV_OVR values for global and source irq were different. But it is OK to use the function's value even when the global and source irq are the same. Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
This commit is contained in:
parent
78316ada22
commit
97ffab1f14
@ -407,10 +407,9 @@ static __init void xen_setup_acpi_sci(void)
|
|||||||
* the ACPI interpreter and keels over since IRQ 9 has not been
|
* the ACPI interpreter and keels over since IRQ 9 has not been
|
||||||
* setup as we had setup IRQ 20 for it).
|
* setup as we had setup IRQ 20 for it).
|
||||||
*/
|
*/
|
||||||
/* Check whether the GSI != IRQ */
|
|
||||||
if (acpi_gsi_to_irq(gsi, &irq) == 0) {
|
if (acpi_gsi_to_irq(gsi, &irq) == 0) {
|
||||||
if (irq >= 0 && irq != gsi)
|
/* Use the provided value if it's valid. */
|
||||||
/* Bugger, we MUST have that IRQ. */
|
if (irq >= 0)
|
||||||
gsi_override = irq;
|
gsi_override = irq;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user