diff options
author | kbuild test robot <lkp@intel.com> | 2020-05-21 10:30:19 +0200 |
---|---|---|
committer | Rob Clark <robdclark@chromium.org> | 2020-05-22 18:12:17 +0200 |
commit | d9aeccec85ec39c4da90cc4b899cbd1961416a0d (patch) | |
tree | 689e4ddb88c93102d10b21018e795a3523479a13 /drivers/gpu | |
parent | drm/msm/a4xx: add a405_registers for a405 device (diff) | |
download | linux-d9aeccec85ec39c4da90cc4b899cbd1961416a0d.tar.xz linux-d9aeccec85ec39c4da90cc4b899cbd1961416a0d.zip |
drm/msm/a6xx: a6xx_hfi_send_start() can be static
Fixes: 8167e6fa76c8 ("drm/msm/a6xx: HFI v2 for A640 and A650")
Signed-off-by: kbuild test robot <lkp@intel.com>
Signed-off-by: Rob Clark <robdclark@chromium.org>
Diffstat (limited to 'drivers/gpu')
-rw-r--r-- | drivers/gpu/drm/msm/adreno/a6xx_hfi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/msm/adreno/a6xx_hfi.c b/drivers/gpu/drm/msm/adreno/a6xx_hfi.c index f9db69e77121..9921e632f1ca 100644 --- a/drivers/gpu/drm/msm/adreno/a6xx_hfi.c +++ b/drivers/gpu/drm/msm/adreno/a6xx_hfi.c @@ -342,7 +342,7 @@ static int a6xx_hfi_send_test(struct a6xx_gmu *gmu) NULL, 0); } -int a6xx_hfi_send_start(struct a6xx_gmu *gmu) +static int a6xx_hfi_send_start(struct a6xx_gmu *gmu) { struct a6xx_hfi_msg_start msg = { 0 }; @@ -350,7 +350,7 @@ int a6xx_hfi_send_start(struct a6xx_gmu *gmu) NULL, 0); } -int a6xx_hfi_send_core_fw_start(struct a6xx_gmu *gmu) +static int a6xx_hfi_send_core_fw_start(struct a6xx_gmu *gmu) { struct a6xx_hfi_msg_core_fw_start msg = { 0 }; |