From: Gianluca Guida Date: Thu, 29 Jun 2023 14:24:08 +0000 (+0100) Subject: lib: sbi: fix comment indent X-Git-Tag: v1.3.1~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0907de38dbcd121d2f8b4bafaf7f9fe76092d5f1;p=platform%2Fkernel%2Fopensbi.git lib: sbi: fix comment indent Use tabs rather than spaces. Signed-off-by: Gianluca Guida Reviewed-by: Anup Patel --- diff --git a/lib/sbi/sbi_ecall_dbcn.c b/lib/sbi/sbi_ecall_dbcn.c index ecec027..8e68729 100644 --- a/lib/sbi/sbi_ecall_dbcn.c +++ b/lib/sbi/sbi_ecall_dbcn.c @@ -34,10 +34,10 @@ static int sbi_ecall_dbcn_handler(unsigned long extid, unsigned long funcid, * Based on above, we simply fail if the upper 32bits of * the physical address (i.e. a2 register) is non-zero on * RV32. - * - * Analogously, we fail if the upper 64bit of the - * physical address (i.e. a2 register) is non-zero on - * RV64. + * + * Analogously, we fail if the upper 64bit of the + * physical address (i.e. a2 register) is non-zero on + * RV64. */ if (regs->a2) return SBI_ERR_FAILED;