From 772761e6f498cd4e9f869c7b57ec2ef70971d197 Mon Sep 17 00:00:00 2001 From: Mahantesh Kumbar Date: Mon, 30 May 2016 22:54:32 +0530 Subject: gpu: nvgpu: fixing sparse error/warning - nvgpu/gm20b/acr_gm20b.c:88:6: warning: symbol 'gm20b_wpr_info' was not declared. Should it be static? - nvgpu/gm20b/acr_gm20b.c:1052:5: warning: symbol 'gm20b_bootstrap_hs_flcn' was not declared. Should it be static? Bug 200067946 Change-Id: I600f06055bd896a88eed5f5549310aa057f86e19 Signed-off-by: Mahantesh Kumbar Reviewed-on: http://git-master/r/1156054 Reviewed-by: Automatic_Commit_Validation_User GVS: Gerrit_Virtual_Submit Reviewed-by: Terje Bergstrom --- drivers/gpu/nvgpu/gm20b/acr_gm20b.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'drivers/gpu') diff --git a/drivers/gpu/nvgpu/gm20b/acr_gm20b.c b/drivers/gpu/nvgpu/gm20b/acr_gm20b.c index 1f78749c..18ad818e 100644 --- a/drivers/gpu/nvgpu/gm20b/acr_gm20b.c +++ b/drivers/gpu/nvgpu/gm20b/acr_gm20b.c @@ -65,6 +65,7 @@ static int gm20b_alloc_blob_space(struct gk20a *g, size_t size, struct mem_desc *mem); static bool gm20b_is_priv_load(u32 falcon_id); static bool gm20b_is_lazy_bootstrap(u32 falcon_id); +static void gm20b_wpr_info(struct gk20a *g, u64 *base, u64 *size); /*Globals*/ static get_ucode_details pmu_acr_supp_ucode_list[] = { @@ -85,7 +86,7 @@ static void start_gm20b_pmu(struct gk20a *g) pwr_falcon_cpuctl_startcpu_f(1)); } -void gm20b_wpr_info(struct gk20a *g, u64 *base, u64 *size) +static void gm20b_wpr_info(struct gk20a *g, u64 *base, u64 *size) { struct mc_carveout_info inf; @@ -1049,7 +1050,7 @@ static int lsf_gen_wpr_requirements(struct gk20a *g, struct ls_flcn_mgr *plsfm) /*Loads ACR bin to FB mem and bootstraps PMU with bootloader code * start and end are addresses of ucode blob in non-WPR region*/ -int gm20b_bootstrap_hs_flcn(struct gk20a *g) +static int gm20b_bootstrap_hs_flcn(struct gk20a *g) { struct mm_gk20a *mm = &g->mm; struct vm_gk20a *vm = &mm->pmu.vm; -- cgit v1.2.2