From 65fac653113bcd1ac86ac85f44138caa69ad3d9a Mon Sep 17 00:00:00 2001 From: Leo Yu-Chi Liang Date: Wed, 7 Jan 2026 11:26:02 +0800 Subject: [PATCH] include: sbi_scratch: fix typo sbi_scratch -> HART id Fix "sbi_scratch" to "HART id" to better reflect its purpose. Signed-off-by: Leo Yu-Chi Liang Reviewed-by: Anup Patel Link: https://lore.kernel.org/r/20260107032602.1143819-1-ycliang@andestech.com Signed-off-by: Anup Patel --- include/sbi/sbi_scratch.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/sbi/sbi_scratch.h b/include/sbi/sbi_scratch.h index f1b4155d..58d54628 100644 --- a/include/sbi/sbi_scratch.h +++ b/include/sbi/sbi_scratch.h @@ -186,7 +186,7 @@ extern u32 sbi_scratch_hart_count; /** HART index to HART id table */ extern u32 hartindex_to_hartid_table[]; -/** Get sbi_scratch from HART index */ +/** Get HART id from HART index */ #define sbi_hartindex_to_hartid(__hartindex) \ ({ \ ((__hartindex) < SBI_HARTMASK_MAX_BITS) ? \