[PATCH v2 1/6] armv8: spin_table: Fix missing includes
Sam Day via B4 Relay
devnull+me.samcday.com at kernel.org
Tue Jun 2 09:18:57 CEST 2026
From: Sam Day <me at samcday.com>
Dropping the common.h header resulted in the spin table header missing
asm/types.h and the source unit missing the errno.h includes.
Fixes: 7410cde67de0 ("arm: Remove <common.h> and add needed includes")
Reviewed-by: Tom Rini <trini at konsulko.com>
Signed-off-by: Sam Day <me at samcday.com>
---
arch/arm/include/asm/spin_table.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/arch/arm/include/asm/spin_table.h b/arch/arm/include/asm/spin_table.h
index dec18c6e5c1..8fc61237e07 100644
--- a/arch/arm/include/asm/spin_table.h
+++ b/arch/arm/include/asm/spin_table.h
@@ -3,6 +3,8 @@
#ifndef __ASM_SPIN_TABLE_H__
#define __ASM_SPIN_TABLE_H__
+#include <asm/types.h>
+
extern u64 spin_table_cpu_release_addr;
extern char spin_table_reserve_begin;
extern char spin_table_reserve_end;
--
2.54.0
More information about the U-Boot
mailing list