summaryrefslogtreecommitdiff
path: root/include/sbi/sbi_tlb.h
diff options
context:
space:
mode:
authorAnup Patel <anup.patel@wdc.com>2020-01-15 10:51:47 +0300
committerAnup Patel <anup@brainfault.org>2020-01-22 09:40:47 +0300
commit817d50d0d477c2e830b92c3afb523711ca0bae3f (patch)
tree6923d7dd78067bf0d34f677c292b8a05eabb7b70 /include/sbi/sbi_tlb.h
parent5f762d14f0473dec97ee248e53d29b78be8a833e (diff)
downloadopensbi-817d50d0d477c2e830b92c3afb523711ca0bae3f.tar.xz
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 'include/sbi/sbi_tlb.h')
-rw-r--r--include/sbi/sbi_tlb.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/sbi/sbi_tlb.h b/include/sbi/sbi_tlb.h
index c8d24ef..eb3d925 100644
--- a/include/sbi/sbi_tlb.h
+++ b/include/sbi/sbi_tlb.h
@@ -43,9 +43,9 @@ struct sbi_tlb_info {
#define SBI_TLB_INFO_SIZE sizeof(struct sbi_tlb_info)
-int sbi_tlb_fifo_request(struct sbi_scratch *scratch, ulong hmask,
- ulong hbase, struct sbi_tlb_info *tinfo);
+int sbi_tlb_request(struct sbi_scratch *scratch, ulong hmask,
+ ulong hbase, struct sbi_tlb_info *tinfo);
-int sbi_tlb_fifo_init(struct sbi_scratch *scratch, bool cold_boot);
+int sbi_tlb_init(struct sbi_scratch *scratch, bool cold_boot);
#endif