diff options
author | Nanyong Sun <[email protected]> | 2021-03-05 19:33:26 +0800 |
---|---|---|
committer | Palmer Dabbelt <[email protected]> | 2021-03-09 20:46:01 -0800 |
commit | 56a6c37f6e3994cba01609768f5a215c85bd2f85 (patch) | |
tree | bb590196630b2c4c192394f2056104fca927c4b7 | |
parent | 004570c3796bfe454a9cdfb9ab5d3ea48371fe48 (diff) |
riscv: sbi: Fix comment of __sbi_set_timer_v01
Fix the comment of __sbi_set_timer_v01, the function name in comment
is missing '__'
Signed-off-by: Nanyong Sun <[email protected]>
Signed-off-by: Palmer Dabbelt <[email protected]>
-rw-r--r-- | arch/riscv/kernel/sbi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/riscv/kernel/sbi.c b/arch/riscv/kernel/sbi.c index f4a7db3d309e..d3bf756321a5 100644 --- a/arch/riscv/kernel/sbi.c +++ b/arch/riscv/kernel/sbi.c @@ -116,7 +116,7 @@ void sbi_clear_ipi(void) EXPORT_SYMBOL(sbi_clear_ipi); /** - * sbi_set_timer_v01() - Program the timer for next timer event. + * __sbi_set_timer_v01() - Program the timer for next timer event. * @stime_value: The value after which next timer event should fire. * * Return: None |