]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
drm/amdgpu: trivial typo fix
authorEvan Quan <evan.quan@amd.com>
Fri, 15 Mar 2019 02:04:34 +0000 (10:04 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Thu, 28 Mar 2019 03:40:05 +0000 (22:40 -0500)
"error" was not correctly spelled.

Signed-off-by: Evan Quan <evan.quan@amd.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu_device.c

index f4478e50da703fc7b5fd39823b25aaaaae444bca..865e067b1b5bf3dd999ffe20a812d239b2e55cca 100644 (file)
@@ -2388,7 +2388,7 @@ static void amdgpu_device_xgmi_reset_func(struct work_struct *__work)
 
        adev->asic_reset_res =  amdgpu_asic_reset(adev);
        if (adev->asic_reset_res)
-               DRM_WARN("ASIC reset failed with err r, %d for drm dev, %s",
+               DRM_WARN("ASIC reset failed with error, %d for drm dev, %s",
                         adev->asic_reset_res, adev->ddev->unique);
 }
 
@@ -3387,7 +3387,7 @@ static int amdgpu_do_asic_reset(struct amdgpu_hive_info *hive,
                                r = amdgpu_asic_reset(tmp_adev);
 
                        if (r) {
-                               DRM_ERROR("ASIC reset failed with err r, %d for drm dev, %s",
+                               DRM_ERROR("ASIC reset failed with error, %d for drm dev, %s",
                                         r, tmp_adev->ddev->unique);
                                break;
                        }