Commit 97d5aa60 authored by Shashank Sharma's avatar Shashank Sharma Committed by Alex Deucher

drm/amdgpu: cleanup unused variable

This patch removes an unused input variable in the MES
doorbell function.

Cc: Christian König <Christian.Koenig@amd.com>
Cc: Alex Deucher <alexander.deucher@amd.com>
Reviewed-by: default avatarChristian König <Christian.Koenig@amd.com>
Signed-off-by: default avatarShashank Sharma <shashank.sharma@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 63ae548f
...@@ -40,7 +40,6 @@ int amdgpu_mes_doorbell_process_slice(struct amdgpu_device *adev) ...@@ -40,7 +40,6 @@ int amdgpu_mes_doorbell_process_slice(struct amdgpu_device *adev)
} }
static int amdgpu_mes_kernel_doorbell_get(struct amdgpu_device *adev, static int amdgpu_mes_kernel_doorbell_get(struct amdgpu_device *adev,
struct amdgpu_mes_process *process,
int ip_type, uint64_t *doorbell_index) int ip_type, uint64_t *doorbell_index)
{ {
unsigned int offset, found; unsigned int offset, found;
...@@ -65,7 +64,6 @@ static int amdgpu_mes_kernel_doorbell_get(struct amdgpu_device *adev, ...@@ -65,7 +64,6 @@ static int amdgpu_mes_kernel_doorbell_get(struct amdgpu_device *adev,
} }
static void amdgpu_mes_kernel_doorbell_free(struct amdgpu_device *adev, static void amdgpu_mes_kernel_doorbell_free(struct amdgpu_device *adev,
struct amdgpu_mes_process *process,
uint32_t doorbell_index) uint32_t doorbell_index)
{ {
unsigned int old, rel_index; unsigned int old, rel_index;
...@@ -653,7 +651,7 @@ int amdgpu_mes_add_hw_queue(struct amdgpu_device *adev, int gang_id, ...@@ -653,7 +651,7 @@ int amdgpu_mes_add_hw_queue(struct amdgpu_device *adev, int gang_id,
*queue_id = queue->queue_id = r; *queue_id = queue->queue_id = r;
/* allocate a doorbell index for the queue */ /* allocate a doorbell index for the queue */
r = amdgpu_mes_kernel_doorbell_get(adev, gang->process, r = amdgpu_mes_kernel_doorbell_get(adev,
qprops->queue_type, qprops->queue_type,
&qprops->doorbell_off); &qprops->doorbell_off);
if (r) if (r)
...@@ -711,8 +709,7 @@ int amdgpu_mes_add_hw_queue(struct amdgpu_device *adev, int gang_id, ...@@ -711,8 +709,7 @@ int amdgpu_mes_add_hw_queue(struct amdgpu_device *adev, int gang_id,
return 0; return 0;
clean_up_doorbell: clean_up_doorbell:
amdgpu_mes_kernel_doorbell_free(adev, gang->process, amdgpu_mes_kernel_doorbell_free(adev, qprops->doorbell_off);
qprops->doorbell_off);
clean_up_queue_id: clean_up_queue_id:
spin_lock_irqsave(&adev->mes.queue_id_lock, flags); spin_lock_irqsave(&adev->mes.queue_id_lock, flags);
idr_remove(&adev->mes.queue_id_idr, queue->queue_id); idr_remove(&adev->mes.queue_id_idr, queue->queue_id);
...@@ -766,8 +763,7 @@ int amdgpu_mes_remove_hw_queue(struct amdgpu_device *adev, int queue_id) ...@@ -766,8 +763,7 @@ int amdgpu_mes_remove_hw_queue(struct amdgpu_device *adev, int queue_id)
queue_id); queue_id);
list_del(&queue->list); list_del(&queue->list);
amdgpu_mes_kernel_doorbell_free(adev, gang->process, amdgpu_mes_kernel_doorbell_free(adev, queue->doorbell_off);
queue->doorbell_off);
amdgpu_mes_unlock(&adev->mes); amdgpu_mes_unlock(&adev->mes);
amdgpu_mes_queue_free_mqd(queue); amdgpu_mes_queue_free_mqd(queue);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment