lib: sbi/sbi_domain: cosmetic style fixes
authorBin Meng <bmeng@tinylab.org>
Fri, 24 Feb 2023 04:28:25 +0000 (12:28 +0800)
committerAnup Patel <anup@brainfault.org>
Mon, 27 Feb 2023 06:56:26 +0000 (12:26 +0530)
Minor updates to the comments for language and style fixes.

Signed-off-by: Bin Meng <bmeng@tinylab.org>
Reviewed-by: Anup Patel <anup@brainfault.org>
lib/sbi/sbi_domain.c

index dc825b0..d2f58a2 100644 (file)
@@ -337,7 +337,7 @@ static int sanitize_domain(const struct sbi_platform *plat,
        /*
         * Check next mode
         *
-        * We only allow next mode to be S-mode or U-mode.so that we can
+        * We only allow next mode to be S-mode or U-modeso that we can
         * protect M-mode context and enforce checks on memory accesses.
         */
        if (dom->next_mode != PRV_S &&
@@ -347,7 +347,7 @@ static int sanitize_domain(const struct sbi_platform *plat,
                return SBI_EINVAL;
        }
 
-       /* Check next address and next mode*/
+       /* Check next address and next mode */
        if (!sbi_domain_check_addr(dom, dom->next_addr, dom->next_mode,
                                   SBI_DOMAIN_EXECUTE)) {
                sbi_printf("%s: %s next booting stage address 0x%lx can't "