From: Christian König Date: Thu, 20 Aug 2015 15:03:48 +0000 (+0200) Subject: drm/amdgpu: cleanup a scheduler function name X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=d54fdb94b2fd4c989d498f69e8bbf4189fde42ef;p=linux-beck.git drm/amdgpu: cleanup a scheduler function name Signed-off-by: Christian König Reviewed-by: Chunming Zhou --- diff --git a/drivers/gpu/drm/amd/scheduler/gpu_scheduler.c b/drivers/gpu/drm/amd/scheduler/gpu_scheduler.c index 5fb189ca7fbe..37badd6292cb 100644 --- a/drivers/gpu/drm/amd/scheduler/gpu_scheduler.c +++ b/drivers/gpu/drm/amd/scheduler/gpu_scheduler.c @@ -143,8 +143,8 @@ int amd_sched_entity_init(struct amd_gpu_scheduler *sched, * * return true if entity is initialized, false otherwise */ -static bool is_context_entity_initialized(struct amd_gpu_scheduler *sched, - struct amd_sched_entity *entity) +static bool amd_sched_entity_is_initialized(struct amd_gpu_scheduler *sched, + struct amd_sched_entity *entity) { return entity->scheduler == sched && entity->belongto_rq != NULL; @@ -180,7 +180,7 @@ int amd_sched_entity_fini(struct amd_gpu_scheduler *sched, struct amd_sched_rq *rq = entity->belongto_rq; long r; - if (!is_context_entity_initialized(sched, entity)) + if (!amd_sched_entity_is_initialized(sched, entity)) return 0; entity->need_wakeup = true; /**