aboutsummaryrefslogtreecommitdiff
path: root/lib/sbi/sbi_ipi.c
diff options
context:
space:
mode:
authorAnup Patel <anup.patel@wdc.com>2020-01-15 13:21:47 +0530
committerAnup Patel <anup@brainfault.org>2020-01-22 12:10:47 +0530
commit817d50d0d477c2e830b92c3afb523711ca0bae3f (patch)
tree6923d7dd78067bf0d34f677c292b8a05eabb7b70 /lib/sbi/sbi_ipi.c
parent5f762d14f0473dec97ee248e53d29b78be8a833e (diff)
lib: Drop _fifo from the name of various sbi_tlb_fifo_xyz() functions
This patch drops _fifo from the name of various sbi_tlb_fifo_xyz() functions because all these functions deal with remote TLB managment and FIFO is the per-HART data structure used internally by remote TLB implementation. Signed-off-by: Anup Patel <anup.patel@wdc.com> Reviewed-by: Atish Patra <atish.patra@wdc.com>
Diffstat (limited to 'lib/sbi/sbi_ipi.c')
-rw-r--r--lib/sbi/sbi_ipi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sbi/sbi_ipi.c b/lib/sbi/sbi_ipi.c
index 42868c5..a900fda 100644
--- a/lib/sbi/sbi_ipi.c
+++ b/lib/sbi/sbi_ipi.c
@@ -232,7 +232,7 @@ int sbi_ipi_init(struct sbi_scratch *scratch, bool cold_boot)
ipi_data = sbi_scratch_offset_ptr(scratch, ipi_data_off);
ipi_data->ipi_type = 0x00;
- ret = sbi_tlb_fifo_init(scratch, cold_boot);
+ ret = sbi_tlb_init(scratch, cold_boot);
if (ret)
return ret;