
27 Feb
2022
27 Feb
'22
3:18 p.m.
asm/tables.h does not exist on ARM and I did not need it to make the code compile successfully. Let's not include it there.
Signed-off-by: Alexander Graf agraf@csgraf.de
---
Maybe someone with more insight into the qfw code could tell me if we can remove the include altogether? :) --- drivers/misc/qfw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/misc/qfw.c b/drivers/misc/qfw.c index 677841aac5..754bc6a603 100644 --- a/drivers/misc/qfw.c +++ b/drivers/misc/qfw.c @@ -15,7 +15,7 @@ #include <dm.h> #include <misc.h> #include <tables_csum.h> -#ifdef CONFIG_GENERATE_ACPI_TABLE +#if defined(CONFIG_GENERATE_ACPI_TABLE) && !defined(CONFIG_ARM) #include <asm/tables.h> #endif
--
2.32.0