diff options
| author | Gianluca Guida <gianluca@rivosinc.com> | 2023-06-29 15:24:08 +0100 |
|---|---|---|
| committer | Anup Patel <anup@brainfault.org> | 2023-07-05 09:25:32 +0530 |
| commit | 0907de38dbcd121d2f8b4bafaf7f9fe76092d5f1 (patch) | |
| tree | bf8a63a15edc376ac19f5266f4777e7a70458c6c | |
| parent | 2552799a1df30a3dcd2321a8b75d61d06f5fb9fc (diff) | |
| download | opensbi-0907de38dbcd121d2f8b4bafaf7f9fe76092d5f1.tar.gz opensbi-0907de38dbcd121d2f8b4bafaf7f9fe76092d5f1.zip | |
lib: sbi: fix comment indent
Use tabs rather than spaces.
Signed-off-by: Gianluca Guida <gianluca@rivosinc.com>
Reviewed-by: Anup Patel <anup@brainfault.org>
| -rw-r--r-- | lib/sbi/sbi_ecall_dbcn.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/sbi/sbi_ecall_dbcn.c b/lib/sbi/sbi_ecall_dbcn.c index ecec027a..8e687298 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; |
