diff options
author | Al Stone <al.stone@linaro.org> | 2015-07-06 19:16:48 -0400 |
---|---|---|
committer | Catalin Marinas <catalin.marinas@arm.com> | 2015-07-07 09:55:04 -0400 |
commit | 99e3e3ae332b6ca91d5c444ea7849f367f5e5a76 (patch) | |
tree | ac1013f0212e4bdf6591bc983db3b942f5555dd1 /drivers/irqchip/irq-gic.c | |
parent | b6cfb277378ef831c0fa84bcff5049307294adc6 (diff) |
ACPI / ARM64 : use the new BAD_MADT_GICC_ENTRY macro
For those parts of the arm64 ACPI code that need to check GICC subtables
in the MADT, use the new BAD_MADT_GICC_ENTRY macro instead of the previous
BAD_MADT_ENTRY. The new macro takes into account differences in the size
of the GICC subtable that the old macro did not; this caused failures even
though the subtable entries are valid.
Fixes: aeb823bbacc2 ("ACPICA: ACPI 6.0: Add changes for FADT table.")
Signed-off-by: Al Stone <al.stone@linaro.org>
Reviewed-by: Hanjun Guo <hanjun.guo@linaro.org>
Acked-by: Will Deacon <will.deacon@arm.com>
Acked-by: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Diffstat (limited to 'drivers/irqchip/irq-gic.c')
-rw-r--r-- | drivers/irqchip/irq-gic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/irqchip/irq-gic.c b/drivers/irqchip/irq-gic.c index 8d7e1c8b6d56..4dd88264dff5 100644 --- a/drivers/irqchip/irq-gic.c +++ b/drivers/irqchip/irq-gic.c | |||
@@ -1055,7 +1055,7 @@ gic_acpi_parse_madt_cpu(struct acpi_subtable_header *header, | |||
1055 | 1055 | ||
1056 | processor = (struct acpi_madt_generic_interrupt *)header; | 1056 | processor = (struct acpi_madt_generic_interrupt *)header; |
1057 | 1057 | ||
1058 | if (BAD_MADT_ENTRY(processor, end)) | 1058 | if (BAD_MADT_GICC_ENTRY(processor, end)) |
1059 | return -EINVAL; | 1059 | return -EINVAL; |
1060 | 1060 | ||
1061 | /* | 1061 | /* |