Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1548120 > unrolled thread
| Started by | Colin King <colin.king@canonical.com> |
|---|---|
| First post | 2016-12-29 16:50 +0100 |
| Last post | 2016-12-30 05:00 +0100 |
| Articles | 3 — 3 participants |
Back to article view | Back to linux.kernel
[PATCH] drm/amd/amdgpu: fix spelling mistake: "comleted" -> "completed" Colin King <colin.king@canonical.com> - 2016-12-29 16:50 +0100
RE: [PATCH] drm/amd/amdgpu: fix spelling mistake: "comleted" -> "completed" "Zhou, David(ChunMing)" <David1.Zhou@amd.com> - 2016-12-30 03:00 +0100
Re: [PATCH] drm/amd/amdgpu: fix spelling mistake: "comleted" -> "completed" Edward O'Callaghan <funfunctor@folklore1984.net> - 2016-12-30 05:00 +0100
| From | Colin King <colin.king@canonical.com> |
|---|---|
| Date | 2016-12-29 16:50 +0100 |
| Subject | [PATCH] drm/amd/amdgpu: fix spelling mistake: "comleted" -> "completed" |
| Message-ID | <sTL7P-8pB-1@gated-at.bofh.it> |
From: Colin Ian King <colin.king@canonical.com>
trivial fix to spelling mistake in WARN message
Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
index 60bd4af..9ca3167 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
@@ -2335,7 +2335,7 @@ int amdgpu_gpu_reset(struct amdgpu_device *adev)
if (fence) {
r = dma_fence_wait(fence, false);
if (r) {
- WARN(r, "recovery from shadow isn't comleted\n");
+ WARN(r, "recovery from shadow isn't completed\n");
break;
}
}
@@ -2347,7 +2347,7 @@ int amdgpu_gpu_reset(struct amdgpu_device *adev)
if (fence) {
r = dma_fence_wait(fence, false);
if (r)
- WARN(r, "recovery from shadow isn't comleted\n");
+ WARN(r, "recovery from shadow isn't completed\n");
}
dma_fence_put(fence);
}
--
2.10.2
[toc] | [next] | [standalone]
| From | "Zhou, David(ChunMing)" <David1.Zhou@amd.com> |
|---|---|
| Date | 2016-12-30 03:00 +0100 |
| Subject | RE: [PATCH] drm/amd/amdgpu: fix spelling mistake: "comleted" -> "completed" |
| Message-ID | <sTUE9-6cY-3@gated-at.bofh.it> |
| In reply to | #1548120 |
+amd-gfx, patch is Reviewed-by: Chunming Zhou <david1.zhou@amd.com>
-----Original Message-----
From: Colin King [mailto:colin.king@canonical.com]
Sent: Thursday, December 29, 2016 11:47 PM
To: Deucher, Alexander <Alexander.Deucher@amd.com>; Koenig, Christian <Christian.Koenig@amd.com>; David Airlie <airlied@linux.ie>; Zhou, David(ChunMing) <David1.Zhou@amd.com>; StDenis, Tom <Tom.StDenis@amd.com>; Liu, Monk <Monk.Liu@amd.com>; dri-devel@lists.freedesktop.org
Cc: linux-kernel@vger.kernel.org
Subject: [PATCH] drm/amd/amdgpu: fix spelling mistake: "comleted" -> "completed"
From: Colin Ian King <colin.king@canonical.com>
trivial fix to spelling mistake in WARN message
Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
index 60bd4af..9ca3167 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
@@ -2335,7 +2335,7 @@ int amdgpu_gpu_reset(struct amdgpu_device *adev)
if (fence) {
r = dma_fence_wait(fence, false);
if (r) {
- WARN(r, "recovery from shadow isn't comleted\n");
+ WARN(r, "recovery from shadow isn't completed\n");
break;
}
}
@@ -2347,7 +2347,7 @@ int amdgpu_gpu_reset(struct amdgpu_device *adev)
if (fence) {
r = dma_fence_wait(fence, false);
if (r)
- WARN(r, "recovery from shadow isn't comleted\n");
+ WARN(r, "recovery from shadow isn't completed\n");
}
dma_fence_put(fence);
}
--
2.10.2
[toc] | [prev] | [next] | [standalone]
| From | Edward O'Callaghan <funfunctor@folklore1984.net> |
|---|---|
| Date | 2016-12-30 05:00 +0100 |
| Subject | Re: [PATCH] drm/amd/amdgpu: fix spelling mistake: "comleted" -> "completed" |
| Message-ID | <sTWwh-7tY-3@gated-at.bofh.it> |
| In reply to | #1548429 |
[Multipart message — attachments visible in raw view] — view raw
Reviewed-by: Edward O'Callaghan <funfunctor@folklore1984.net>
On 12/30/2016 12:39 PM, Zhou, David(ChunMing) wrote:
> +amd-gfx, patch is Reviewed-by: Chunming Zhou <david1.zhou@amd.com>
>
> -----Original Message-----
> From: Colin King [mailto:colin.king@canonical.com]
> Sent: Thursday, December 29, 2016 11:47 PM
> To: Deucher, Alexander <Alexander.Deucher@amd.com>; Koenig, Christian <Christian.Koenig@amd.com>; David Airlie <airlied@linux.ie>; Zhou, David(ChunMing) <David1.Zhou@amd.com>; StDenis, Tom <Tom.StDenis@amd.com>; Liu, Monk <Monk.Liu@amd.com>; dri-devel@lists.freedesktop.org
> Cc: linux-kernel@vger.kernel.org
> Subject: [PATCH] drm/amd/amdgpu: fix spelling mistake: "comleted" -> "completed"
>
> From: Colin Ian King <colin.king@canonical.com>
>
> trivial fix to spelling mistake in WARN message
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
> drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
> index 60bd4af..9ca3167 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
> @@ -2335,7 +2335,7 @@ int amdgpu_gpu_reset(struct amdgpu_device *adev)
> if (fence) {
> r = dma_fence_wait(fence, false);
> if (r) {
> - WARN(r, "recovery from shadow isn't comleted\n");
> + WARN(r, "recovery from shadow isn't completed\n");
> break;
> }
> }
> @@ -2347,7 +2347,7 @@ int amdgpu_gpu_reset(struct amdgpu_device *adev)
> if (fence) {
> r = dma_fence_wait(fence, false);
> if (r)
> - WARN(r, "recovery from shadow isn't comleted\n");
> + WARN(r, "recovery from shadow isn't completed\n");
> }
> dma_fence_put(fence);
> }
>
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web