diff options
author | Xiaojie Yuan <xiaojie.yuan@amd.com> | 2019-03-27 20:27:20 +0800 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2019-06-21 18:58:21 -0500 |
commit | 966f1d8fd05fd1e3b7c35f4cf657ceb3bfbdfc7a (patch) | |
tree | f71b5ee6da9047974319cb4770b979579c0373cf /drivers/gpu/drm | |
parent | 6a8ee0257dee074ce8b96643f44b1efd1ce120b4 (diff) |
drm/amdgpu/discovery: stop converting the units of base addresses
the unit is already in dword
Signed-off-by: Xiaojie Yuan <xiaojie.yuan@amd.com>
Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.c index 5f967ae8d4ed..697800c4741f 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.c @@ -300,11 +300,11 @@ int amdgpu_discovery_reg_base_init(struct amdgpu_device *adev) for (k = 0; k < num_base_address; k++) { /* - * convert the endianness and unit (in dword) of base addresses in place, + * convert the endianness of base addresses in place, * so that we don't need to convert them when accessing adev->reg_offset. */ - ip->base_address[k] = le32_to_cpu(ip->base_address[k]) >> 2; - DRM_DEBUG("\t0x%08x\n", ip->base_address[k] << 2); + ip->base_address[k] = le32_to_cpu(ip->base_address[k]); + DRM_DEBUG("\t0x%08x\n", ip->base_address[k]); } adev->reg_offset[hw_ip][ip->number_instance] = |