drm/amdkfd: Delete a duplicate statement in set_pasid_vmid_mapping()
The same statement is later done in kgd_set_pasid_vmid_mapping(), so no need to do it in set_pasid_vmid_mapping(). Signed-off-by: Yong Zhao <Yong.Zhao@amd.com> Reviewed-by: Felix Kuehling <Felix.Kuehling@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
ce331f8f7c
commit
deb99d7c4f
|
@ -68,6 +68,4 @@
|
|||
|
||||
#define GRBM_GFX_INDEX 0x30800
|
||||
|
||||
#define ATC_VMID_PASID_MAPPING_VALID (1U << 31)
|
||||
|
||||
#endif
|
||||
|
|
|
@ -846,15 +846,8 @@ static int
|
|||
set_pasid_vmid_mapping(struct device_queue_manager *dqm, unsigned int pasid,
|
||||
unsigned int vmid)
|
||||
{
|
||||
uint32_t pasid_mapping;
|
||||
|
||||
pasid_mapping = (pasid == 0) ? 0 :
|
||||
(uint32_t)pasid |
|
||||
ATC_VMID_PASID_MAPPING_VALID;
|
||||
|
||||
return dqm->dev->kfd2kgd->set_pasid_vmid_mapping(
|
||||
dqm->dev->kgd, pasid_mapping,
|
||||
vmid);
|
||||
dqm->dev->kgd, pasid, vmid);
|
||||
}
|
||||
|
||||
static void init_interrupts(struct device_queue_manager *dqm)
|
||||
|
|
Loading…
Reference in New Issue