summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/amdgpu/amdgpu_vcn.c
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2020-04-01 17:35:45 +0100
committerAlex Deucher <alexander.deucher@amd.com>2020-04-01 14:44:46 -0400
commita500194e73c87e112a6d3833b38eefb4057a2c9e (patch)
treec0f52adcc6f4ad10e492b5dee5e3f8e8b1790255 /drivers/gpu/drm/amd/amdgpu/amdgpu_vcn.c
parent82c416b13cb7d22b96ec0888b296a48dff8a09eb (diff)
downloadlinux-a500194e73c87e112a6d3833b38eefb4057a2c9e.tar.bz2
drm/amdgpu/vcn: fix spelling mistake "fimware" -> "firmware"
There is a spelling mistake in a dev_err error message. Fix it. Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_vcn.c')
-rw-r--r--drivers/gpu/drm/amd/amdgpu/amdgpu_vcn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_vcn.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_vcn.c
index 328b6ceb80de..d653a18dcbc3 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_vcn.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_vcn.c
@@ -187,7 +187,7 @@ int amdgpu_vcn_sw_init(struct amdgpu_device *adev)
PAGE_SIZE, AMDGPU_GEM_DOMAIN_VRAM, &adev->vcn.inst[i].fw_shared_bo,
&adev->vcn.inst[i].fw_shared_gpu_addr, &adev->vcn.inst[i].fw_shared_cpu_addr);
if (r) {
- dev_err(adev->dev, "VCN %d (%d) failed to allocate fimware shared bo\n", i, r);
+ dev_err(adev->dev, "VCN %d (%d) failed to allocate firmware shared bo\n", i, r);
return r;
}
}