diff options
| author | James Morse <[email protected]> | 2023-10-23 13:35:03 +0000 |
|---|---|---|
| committer | Catalin Marinas <[email protected]> | 2023-10-24 14:12:09 +0000 |
| commit | c54e52f84d7aa590e90e1f73f462517ac40051e1 (patch) | |
| tree | 6a7a39e764d1586bbd00caa0bb728e8bde6b9b62 /drivers/acpi/processor_core.c | |
| parent | clocksource/drivers/arm_arch_timer: limit XGene-1 workaround (diff) | |
| download | kernel-c54e52f84d7aa590e90e1f73f462517ac40051e1.tar.gz kernel-c54e52f84d7aa590e90e1f73f462517ac40051e1.zip | |
arm64, irqchip/gic-v3, ACPI: Move MADT GICC enabled check into a helper
ACPI, irqchip and the architecture code all inspect the MADT
enabled bit for a GICC entry in the MADT.
The addition of an 'online capable' bit means all these sites need
updating.
Move the current checks behind a helper to make future updates easier.
Signed-off-by: James Morse <[email protected]>
Reviewed-by: Jonathan Cameron <[email protected]>
Reviewed-by: Gavin Shan <[email protected]>
Signed-off-by: "Russell King (Oracle)" <[email protected]>
Acked-by: "Rafael J. Wysocki" <[email protected]>
Reviewed-by: Sudeep Holla <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Catalin Marinas <[email protected]>
Diffstat (limited to 'drivers/acpi/processor_core.c')
| -rw-r--r-- | drivers/acpi/processor_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/processor_core.c b/drivers/acpi/processor_core.c index 7dd6dbaa98c3..b203cfe28550 100644 --- a/drivers/acpi/processor_core.c +++ b/drivers/acpi/processor_core.c @@ -90,7 +90,7 @@ static int map_gicc_mpidr(struct acpi_subtable_header *entry, struct acpi_madt_generic_interrupt *gicc = container_of(entry, struct acpi_madt_generic_interrupt, header); - if (!(gicc->flags & ACPI_MADT_ENABLED)) + if (!acpi_gicc_is_usable(gicc)) return -ENODEV; /* device_declaration means Device object in DSDT, in the |
