Skip to content

Commit d9aecce

Browse files
intel-lab-lkprobclark
authored andcommitted
drm/msm/a6xx: a6xx_hfi_send_start() can be static
Fixes: 8167e6f ("drm/msm/a6xx: HFI v2 for A640 and A650") Signed-off-by: kbuild test robot <[email protected]> Signed-off-by: Rob Clark <[email protected]>
1 parent d3b68dd commit d9aecce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/gpu/drm/msm/adreno/a6xx_hfi.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -342,15 +342,15 @@ static int a6xx_hfi_send_test(struct a6xx_gmu *gmu)
342342
NULL, 0);
343343
}
344344

345-
int a6xx_hfi_send_start(struct a6xx_gmu *gmu)
345+
static int a6xx_hfi_send_start(struct a6xx_gmu *gmu)
346346
{
347347
struct a6xx_hfi_msg_start msg = { 0 };
348348

349349
return a6xx_hfi_send_msg(gmu, HFI_H2F_MSG_START, &msg, sizeof(msg),
350350
NULL, 0);
351351
}
352352

353-
int a6xx_hfi_send_core_fw_start(struct a6xx_gmu *gmu)
353+
static int a6xx_hfi_send_core_fw_start(struct a6xx_gmu *gmu)
354354
{
355355
struct a6xx_hfi_msg_core_fw_start msg = { 0 };
356356

0 commit comments

Comments
 (0)