lib: sbi: Remove unnecessary semicolon

We have redundant semicolon at quite a few places so let's remove it.

Signed-off-by: Xiang W <wxjstz@126.com>
Reviewed-by: Anup Patel <anup@brainfault.org>
This commit is contained in:
Xiang W
2023-04-25 16:56:23 +08:00
committed by Anup Patel
parent 7919530308
commit 4e3353057a
15 changed files with 19 additions and 19 deletions

View File

@@ -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