diff options
author | Anup Patel <anup.patel@wdc.com> | 2019-01-23 08:13:29 +0530 |
---|---|---|
committer | Anup Patel <anup@brainfault.org> | 2019-01-23 08:39:26 +0530 |
commit | 025d0ae994e5663e8c2ca0e16c42e814abac027d (patch) | |
tree | e8bfe27e49dda65db35e213fd00d7fb994bb451f /platform/kendryte | |
parent | 36394d2f2429c48d1db4e26ad25f9541c8c1027f (diff) |
include: Rename ipi_inject() to ipi_send() for sbi_platform
For better naming, we rename ipi_inject() to ipi_send() in
struct sbi_platform. We also replace term "inject" with
"send" in all related places.
Signed-off-by: Anup Patel <anup.patel@wdc.com>
Diffstat (limited to 'platform/kendryte')
-rw-r--r-- | platform/kendryte/k210/platform.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/kendryte/k210/platform.c b/platform/kendryte/k210/platform.c index acb453d..5c513d4 100644 --- a/platform/kendryte/k210/platform.c +++ b/platform/kendryte/k210/platform.c @@ -114,7 +114,7 @@ struct sbi_platform platform = { .irqchip_init = k210_irqchip_init, .ipi_init = k210_ipi_init, - .ipi_inject = clint_ipi_inject, + .ipi_send = clint_ipi_send, .ipi_sync = clint_ipi_sync, .ipi_clear = clint_ipi_clear, |