habanalabs: goya_reset_sob_group() can be static

Make some functions static

Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: kernel test robot <lkp@intel.com>
Reviewed-by: Oded Gabbay <ogabbay@kernel.org>
Signed-off-by: Oded Gabbay <ogabbay@kernel.org>
This commit is contained in:
kernel test robot 2020-11-19 11:18:30 +08:00 committed by Oded Gabbay
parent 4147864e8d
commit 2a570736ef
1 changed files with 3 additions and 3 deletions

View File

@ -5340,7 +5340,7 @@ static void goya_reset_sob(struct hl_device *hdev, void *data)
}
void goya_reset_sob_group(struct hl_device *hdev, u16 sob_group)
static void goya_reset_sob_group(struct hl_device *hdev, u16 sob_group)
{
}
@ -5366,12 +5366,12 @@ u64 goya_get_device_time(struct hl_device *hdev)
return device_time | RREG32(mmPSOC_TIMESTAMP_CNTCVL);
}
void goya_collective_wait_init_cs(struct hl_cs *cs)
static void goya_collective_wait_init_cs(struct hl_cs *cs)
{
}
int goya_collective_wait_create_jobs(struct hl_device *hdev,
static int goya_collective_wait_create_jobs(struct hl_device *hdev,
struct hl_ctx *ctx, struct hl_cs *cs, u32 wait_queue_id,
u32 collective_engine_id)
{