diff options
author | Atish Patra <atish.patra@wdc.com> | 2019-08-14 18:02:15 -0700 |
---|---|---|
committer | Anup Patel <anup@brainfault.org> | 2019-08-16 08:42:58 +0530 |
commit | 75229705a0bf804099fbf32b61d7f6ba459226ec (patch) | |
tree | 70b560e35bb5dc9d9bd3d3976bd6c7a1107e1a45 /platform/kendryte | |
parent | 897a97a6af31174eb2c6058c6ceb9d3ccc6c6e3c (diff) |
platform: Remove the ipi_sync method from all platforms.
OpenSBI manages outstanding TLB flush requests by queueing
them in a fifo synchronously. An ipi sync which uses an
atomic operation on MMIO address is no longer required.
Remove the ipi sync method from platform header and all usage.
Signed-off-by: Atish Patra <atish.patra@wdc.com>
Reviewed-by: Anup Patel <anup.patel@wdc.com>
Diffstat (limited to 'platform/kendryte')
-rw-r--r-- | platform/kendryte/k210/platform.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/platform/kendryte/k210/platform.c b/platform/kendryte/k210/platform.c index 4c31ee9..19c569c 100644 --- a/platform/kendryte/k210/platform.c +++ b/platform/kendryte/k210/platform.c @@ -102,7 +102,6 @@ const struct sbi_platform_operations platform_ops = { .ipi_init = k210_ipi_init, .ipi_send = clint_ipi_send, - .ipi_sync = clint_ipi_sync, .ipi_clear = clint_ipi_clear, .timer_init = k210_timer_init, |