diff options
author | Drew Davenport <ddavenport@chromium.org> | 2019-09-16 23:11:54 +0300 |
---|---|---|
committer | Rob Clark <robdclark@chromium.org> | 2019-10-07 18:25:30 +0300 |
commit | 53bf7f7a437a4120ec632183a21516609e18f4a5 (patch) | |
tree | 3acf86dcdb602d045d2d97d9461e4fbedda9e197 /drivers/gpu/drm/msm/msm_gpummu.c | |
parent | fa8278b89dfb2d7df1cb7898c5842d90ce52c7bd (diff) | |
download | linux-53bf7f7a437a4120ec632183a21516609e18f4a5.tar.xz |
drm/msm: Remove unused function arguments
The arguments related to IOMMU port name have been unused since
commit 944fc36c31ed ("drm/msm: use upstream iommu") and can be removed.
Signed-off-by: Drew Davenport <ddavenport@chromium.org>
Signed-off-by: Rob Clark <robdclark@chromium.org>
Diffstat (limited to 'drivers/gpu/drm/msm/msm_gpummu.c')
-rw-r--r-- | drivers/gpu/drm/msm/msm_gpummu.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/gpu/drm/msm/msm_gpummu.c b/drivers/gpu/drm/msm/msm_gpummu.c index 34f643a0c28a..34980d8eb7ad 100644 --- a/drivers/gpu/drm/msm/msm_gpummu.c +++ b/drivers/gpu/drm/msm/msm_gpummu.c @@ -21,14 +21,12 @@ struct msm_gpummu { #define GPUMMU_PAGE_SIZE SZ_4K #define TABLE_SIZE (sizeof(uint32_t) * GPUMMU_VA_RANGE / GPUMMU_PAGE_SIZE) -static int msm_gpummu_attach(struct msm_mmu *mmu, const char * const *names, - int cnt) +static int msm_gpummu_attach(struct msm_mmu *mmu) { return 0; } -static void msm_gpummu_detach(struct msm_mmu *mmu, const char * const *names, - int cnt) +static void msm_gpummu_detach(struct msm_mmu *mmu) { } |