From mboxrd@z Thu Jan 1 00:00:00 1970 From: Anup Patel Date: Mon, 23 Sep 2024 17:26:55 +0530 Subject: [PATCH 4/9] lib: sbi_domain: Make sbi_domain_root_add_memregion() as local function In-Reply-To: <20240923115700.381916-1-apatel@ventanamicro.com> References: <20240923115700.381916-1-apatel@ventanamicro.com> Message-ID: <20240923115700.381916-5-apatel@ventanamicro.com> List-Id: To: opensbi@lists.infradead.org MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit The sbi_domain_root_add_memregion() is only used within sbi_domain implementation so make rename and make it a local function. Signed-off-by: Anup Patel --- include/sbi/sbi_domain.h | 10 ---------- lib/sbi/sbi_domain.c | 4 ++-- 2 files changed, 2 insertions(+), 12 deletions(-) diff --git a/include/sbi/sbi_domain.h b/include/sbi/sbi_domain.h index 313ae156..22aa8e50 100644 --- a/include/sbi/sbi_domain.h +++ b/include/sbi/sbi_domain.h @@ -293,16 +293,6 @@ void sbi_domain_dump_all(const char *suffix); int sbi_domain_register(struct sbi_domain *dom, const struct sbi_hartmask *assign_mask); -/** - * Add a memory region to the root domain - * @param reg pointer to the memory region to be added - * - * @return 0 on success - * @return SBI_EALREADY if memory region conflicts with the existing one - * @return SBI_EINVAL otherwise - */ -int sbi_domain_root_add_memregion(const struct sbi_domain_memregion *reg); - /** * Add a memory range with its flags to the root domain * @param addr start physical address of memory range diff --git a/lib/sbi/sbi_domain.c b/lib/sbi/sbi_domain.c index 7198e27e..04e70d3b 100644 --- a/lib/sbi/sbi_domain.c +++ b/lib/sbi/sbi_domain.c @@ -590,7 +590,7 @@ int sbi_domain_register(struct sbi_domain *dom, return 0; } -int sbi_domain_root_add_memregion(const struct sbi_domain_memregion *reg) +static int root_add_memregion(const struct sbi_domain_memregion *reg) { int rc; bool reg_merged; @@ -668,7 +668,7 @@ int sbi_domain_root_add_memrange(unsigned long addr, unsigned long size, (end - pos) : align; sbi_domain_memregion_init(pos, rsize, region_flags, ®); - rc = sbi_domain_root_add_memregion(®); + rc = root_add_memregion(®); if (rc) return rc; pos += rsize; -- 2.43.0