drm/amdkfd: Fix prototype warning for get_process_num_bos

Fix the warning: no previous prototype for 'get_process_num_bos'
[-Wmissing-prototypes]

Reported-by: kernel test robot <lkp@intel.com>
Reviewed-by: Felix Kuehling <Felix.Kuehling@amd.com>
Signed-off-by: Rajneesh Bhardwaj <rajneesh.bhardwaj@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
Rajneesh Bhardwaj 2022-02-10 17:20:45 -05:00 committed by Alex Deucher
parent b010a46bd3
commit 24992ab0b8
1 changed files with 1 additions and 1 deletions

View File

@ -1648,7 +1648,7 @@ exit:
return ret;
}
uint32_t get_process_num_bos(struct kfd_process *p)
static uint32_t get_process_num_bos(struct kfd_process *p)
{
uint32_t num_of_bos = 0;
int i;