diff options
| author | Xiang W <[email protected]> | 2023-04-25 16:56:23 +0800 |
|---|---|---|
| committer | Anup Patel <[email protected]> | 2023-05-11 12:31:34 +0530 |
| commit | 4e3353057a3b975ca58c9b831749e2760f7812c0 (patch) | |
| tree | e629fe553222f3c22e1d32276a6febc0c5dc0729 /lib/sbi/riscv_asm.c | |
| parent | 791953030836d39687688a8e7f1a3e708892cfa1 (diff) | |
lib: sbi: Remove unnecessary semicolon
We have redundant semicolon at quite a few places so let's remove it.
Signed-off-by: Xiang W <[email protected]>
Reviewed-by: Anup Patel <[email protected]>
Diffstat (limited to 'lib/sbi/riscv_asm.c')
| -rw-r--r-- | lib/sbi/riscv_asm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sbi/riscv_asm.c b/lib/sbi/riscv_asm.c index a09cf78e..cd565534 100644 --- a/lib/sbi/riscv_asm.c +++ b/lib/sbi/riscv_asm.c @@ -152,7 +152,7 @@ unsigned long csr_read_num(int csr_num) default: sbi_panic("%s: Unknown CSR %#x", __func__, csr_num); break; - }; + } return ret; @@ -220,7 +220,7 @@ void csr_write_num(int csr_num, unsigned long val) default: sbi_panic("%s: Unknown CSR %#x", __func__, csr_num); break; - }; + } #undef switchcase_csr_write_64 #undef switchcase_csr_write_32 |
