From bd316e2c9bf855b7b7918e71622a9cded6a176ad Mon Sep 17 00:00:00 2001 From: Rahul Pathak Date: Thu, 26 Aug 2021 15:24:18 +0530 Subject: [PATCH] lib: sbi: Correct typo in faults delegation CSR name Correcting the name of faults delegation CSR %s/mfdeleg/medeleg Signed-off-by: Rahul Pathak Reviewed-by: Anup Patel --- lib/sbi/sbi_platform.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/sbi/sbi_platform.c b/lib/sbi/sbi_platform.c index e8b94a3..99bd8f5 100644 --- a/lib/sbi/sbi_platform.c +++ b/lib/sbi/sbi_platform.c @@ -20,7 +20,7 @@ static inline char *sbi_platform_feature_id2string(unsigned long feature) switch (feature) { case SBI_PLATFORM_HAS_MFAULTS_DELEGATION: - fstr = "mfdeleg"; + fstr = "medeleg"; break; default: break; -- 2.7.4