diff mbox series

[next] drm/ttm: fix spelling mistake "swaput" -> "swapout"

Message ID 20201112095013.53619-1-colin.king@canonical.com (mailing list archive)
State New, archived
Headers show
Series [next] drm/ttm: fix spelling mistake "swaput" -> "swapout" | expand

Commit Message

Colin King Nov. 12, 2020, 9:50 a.m. UTC
From: Colin Ian King <colin.king@canonical.com>

There is a spelling mistake in a warning message, fix it.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/gpu/drm/ttm/ttm_bo.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Christian König Nov. 13, 2020, 7:41 a.m. UTC | #1
Am 12.11.20 um 10:50 schrieb Colin King:
> From: Colin Ian King <colin.king@canonical.com>
>
> There is a spelling mistake in a warning message, fix it.
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>

Reviewed-by: Christian König <christian.koenig@amd.com>

> ---
>   drivers/gpu/drm/ttm/ttm_bo.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/ttm/ttm_bo.c b/drivers/gpu/drm/ttm/ttm_bo.c
> index e6bcbfe530ec..d32ca8734aa7 100644
> --- a/drivers/gpu/drm/ttm/ttm_bo.c
> +++ b/drivers/gpu/drm/ttm/ttm_bo.c
> @@ -1494,7 +1494,7 @@ int ttm_bo_swapout(struct ttm_operation_ctx *ctx)
>   
>   		ret = ttm_bo_handle_move_mem(bo, &evict_mem, true, &ctx, &hop);
>   		if (unlikely(ret != 0)) {
> -			WARN(ret == -EMULTIHOP, "Unexpected multihop in swaput - likely driver bug.\n");
> +			WARN(ret == -EMULTIHOP, "Unexpected multihop in swapout - likely driver bug.\n");
>   			goto out;
>   		}
>   	}
diff mbox series

Patch

diff --git a/drivers/gpu/drm/ttm/ttm_bo.c b/drivers/gpu/drm/ttm/ttm_bo.c
index e6bcbfe530ec..d32ca8734aa7 100644
--- a/drivers/gpu/drm/ttm/ttm_bo.c
+++ b/drivers/gpu/drm/ttm/ttm_bo.c
@@ -1494,7 +1494,7 @@  int ttm_bo_swapout(struct ttm_operation_ctx *ctx)
 
 		ret = ttm_bo_handle_move_mem(bo, &evict_mem, true, &ctx, &hop);
 		if (unlikely(ret != 0)) {
-			WARN(ret == -EMULTIHOP, "Unexpected multihop in swaput - likely driver bug.\n");
+			WARN(ret == -EMULTIHOP, "Unexpected multihop in swapout - likely driver bug.\n");
 			goto out;
 		}
 	}