From: Sam Day <[email protected]>
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 <[email protected]>
Signed-off-by: Sam Day <[email protected]>
---
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