diff options
author | Alex Deucher <alexander.deucher@amd.com> | 2022-02-22 14:56:59 -0500 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2022-02-23 14:26:36 -0500 |
commit | e776a755abf0dbe14001e4db22aa1ee70290c1dc (patch) | |
tree | 1f840f6f07d8ddfcd529fb347e56f9f78a6fbddf | |
parent | 203bcac9bf2c5676bfb0b33c7f2403ea5d6ed332 (diff) |
drm/amdgpu: fix typo in amdgpu_discovery.c
disocvery -> discovery
Reviewed-by: Guchun Chen <guchun.chen@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-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 2e0ff1ace6fc..e4fcbb385a62 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.c @@ -435,8 +435,8 @@ next_ip: } } -static void amdgpu_disocvery_read_from_harvest_table(struct amdgpu_device *adev, - uint32_t *vcn_harvest_count) +static void amdgpu_discovery_read_from_harvest_table(struct amdgpu_device *adev, + uint32_t *vcn_harvest_count) { struct binary_header *bhdr; struct harvest_table *harvest_info; @@ -1140,7 +1140,7 @@ void amdgpu_discovery_harvest_ip(struct amdgpu_device *adev) amdgpu_discovery_read_harvest_bit_per_ip(adev, &vcn_harvest_count); } else { - amdgpu_disocvery_read_from_harvest_table(adev, + amdgpu_discovery_read_from_harvest_table(adev, &vcn_harvest_count); } |