From 17abedaef6115493eb8dcf14ed246a74fe8a216b Mon Sep 17 00:00:00 2001 From: Elyes Haouas Date: Sat, 8 Feb 2025 09:37:59 +0100 Subject: [PATCH] include/smp/node: Drop unused is_smp_boot Change-Id: I831d405c58817da64eb241f432a3eb8a096dbe1b Signed-off-by: Elyes Haouas Reviewed-on: https://review.coreboot.org/c/coreboot/+/86327 Tested-by: build bot (Jenkins) Reviewed-by: Martin L Roth --- src/include/smp/node.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/include/smp/node.h b/src/include/smp/node.h index 8f3d14fde1..78db124e8f 100644 --- a/src/include/smp/node.h +++ b/src/include/smp/node.h @@ -9,9 +9,4 @@ int boot_cpu(void); #define boot_cpu(x) 1 #endif -static inline int is_smp_boot(void) -{ - return CONFIG(SMP) && CONFIG_MAX_CPUS > 1; -} - #endif /* _SMP_NODE_H_ */