diff options
| author | Anup Patel <[email protected]> | 2019-01-23 08:13:29 +0530 |
|---|---|---|
| committer | Anup Patel <[email protected]> | 2019-01-23 08:39:26 +0530 |
| commit | 025d0ae994e5663e8c2ca0e16c42e814abac027d (patch) | |
| tree | e8bfe27e49dda65db35e213fd00d7fb994bb451f /platform/common/sys/clint.c | |
| 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 <[email protected]>
Diffstat (limited to 'platform/common/sys/clint.c')
| -rw-r--r-- | platform/common/sys/clint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/common/sys/clint.c b/platform/common/sys/clint.c index 0f530761..a518996b 100644 --- a/platform/common/sys/clint.c +++ b/platform/common/sys/clint.c @@ -16,7 +16,7 @@ static u32 clint_ipi_hart_count; static volatile void *clint_ipi_base; static volatile u32 *clint_ipi; -void clint_ipi_inject(u32 target_hart) +void clint_ipi_send(u32 target_hart) { if (clint_ipi_hart_count <= target_hart) return; |
