diff options
| author | Nayan Deshmukh <[email protected]> | 2018-03-29 17:06:32 +0000 |
|---|---|---|
| committer | Alex Deucher <[email protected]> | 2018-05-15 18:44:27 +0000 |
| commit | 8344c53f57057b42a5da87e9557c40fcda18fb7a (patch) | |
| tree | 295778ddf3582cb8c745f649cdf7ae1b811ed910 /drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c | |
| parent | Add SPDX idenitifier and clarify license (diff) | |
| download | kernel-8344c53f57057b42a5da87e9557c40fcda18fb7a.tar.gz kernel-8344c53f57057b42a5da87e9557c40fcda18fb7a.zip | |
drm/scheduler: remove unused parameter
this patch also effect the amdgpu and etnaviv drivers which
use the function drm_sched_entity_init
Signed-off-by: Nayan Deshmukh <[email protected]>
Suggested-by: Christian König <[email protected]>
Acked-by: Lucas Stach <[email protected]>
Reviewed-by: Christian König <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c index 6741a62a7d15..a8e531d604fa 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c @@ -91,7 +91,7 @@ static int amdgpu_ctx_init(struct amdgpu_device *adev, continue; r = drm_sched_entity_init(&ring->sched, &ctx->rings[i].entity, - rq, amdgpu_sched_jobs, &ctx->guilty); + rq, &ctx->guilty); if (r) goto failed; } |
