projects
/
platform
/
kernel
/
linux-starfive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3c1918c
)
riscv: sbi: Correct sbi_shutdown() and sbi_clear_ipi() export
author
Kefeng Wang
<wangkefeng.wang@huawei.com>
Fri, 17 Apr 2020 12:12:20 +0000
(20:12 +0800)
committer
Palmer Dabbelt
<palmerdabbelt@google.com>
Tue, 21 Apr 2020 23:14:58 +0000
(16:14 -0700)
Fix incorrect EXPORT_SYMBOL().
Fixes:
efca13989250
("RISC-V: Introduce a new config for SBI v0.1")
Signed-off-by: Kefeng Wang <wangkefeng.wang@huawei.com>
Reviewed-by: Anup Patel <anup@brainfault.org>
Signed-off-by: Palmer Dabbelt <palmerdabbelt@google.com>
arch/riscv/kernel/sbi.c
patch
|
blob
|
history
diff --git
a/arch/riscv/kernel/sbi.c
b/arch/riscv/kernel/sbi.c
index
7c24da5
..
62b10a1
100644
(file)
--- a/
arch/riscv/kernel/sbi.c
+++ b/
arch/riscv/kernel/sbi.c
@@
-102,7
+102,7
@@
void sbi_shutdown(void)
{
sbi_ecall(SBI_EXT_0_1_SHUTDOWN, 0, 0, 0, 0, 0, 0, 0);
}
-EXPORT_SYMBOL(sbi_s
et_timer
);
+EXPORT_SYMBOL(sbi_s
hutdown
);
/**
* sbi_clear_ipi() - Clear any pending IPIs for the calling hart.
@@
-113,7
+113,7
@@
void sbi_clear_ipi(void)
{
sbi_ecall(SBI_EXT_0_1_CLEAR_IPI, 0, 0, 0, 0, 0, 0, 0);
}
-EXPORT_SYMBOL(sbi_
shutdown
);
+EXPORT_SYMBOL(sbi_
clear_ipi
);
/**
* sbi_set_timer_v01() - Program the timer for next timer event.