diff options
author | Colin Ian King <colin.king@canonical.com> | 2020-08-05 12:31:55 +0100 |
---|---|---|
committer | Roland Scheidegger <sroland@vmware.com> | 2020-08-11 03:16:03 +0200 |
commit | 1ae96fce3e4dfe769515350b7f142b3bca1e0bb6 (patch) | |
tree | aa81b664c7458785895353d0d5aacbcb735eb023 /drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c | |
parent | 981243371a5d832af5bc572071172e955d02fe88 (diff) | |
download | linux-1ae96fce3e4dfe769515350b7f142b3bca1e0bb6.tar.bz2 |
drm/vmwgfx: fix spelling mistake "Cound" -> "Could"
There is a spelling mistake in a DRM_ERROR message. Fix it.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Roland Scheidegger <sroland@vmware.com>
Diffstat (limited to 'drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c')
-rw-r--r-- | drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c b/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c index 4284c4bd444d..e67e2e8f6e6f 100644 --- a/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c +++ b/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c @@ -3037,7 +3037,7 @@ static int vmw_cmd_dx_bind_streamoutput(struct vmw_private *dev_priv, res = vmw_dx_streamoutput_lookup(vmw_context_res_man(ctx_node->ctx), cmd->body.soid); if (IS_ERR(res)) { - DRM_ERROR("Cound not find streamoutput to bind.\n"); + DRM_ERROR("Could not find streamoutput to bind.\n"); return PTR_ERR(res); } |