summaryrefslogtreecommitdiff
path: root/vmwgfx_surface.c
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2017-05-27 19:52:30 +0100
committerSinclair Yeh <syeh@vmware.com>2017-05-30 08:53:11 -0700
commit578e4e7d1c02e9ded4b3aad95ebe468aa42f2adc (patch)
treed0402613f765533a64f1a5ca69281c036642aefe /vmwgfx_surface.c
parent90e924b70f038ab19197fd039c6b967e57785c9f (diff)
drm/vmwgfx: fix spelling mistake "exeeds" -> "exceeds"
Trivial fix to spelling mistake in DRM_ERROR error message. Signed-off-by: Colin Ian King <colin.king@canonical.com> Reviewed-by: Sinclair Yeh <syeh@vmware.com>
Diffstat (limited to 'vmwgfx_surface.c')
-rw-r--r--vmwgfx_surface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vmwgfx_surface.c b/vmwgfx_surface.c
index d7d94c2..b242047 100644
--- a/vmwgfx_surface.c
+++ b/vmwgfx_surface.c
@@ -1501,7 +1501,7 @@ int vmw_surface_gb_priv_define(struct drm_device *dev,
dev_priv->stdu_max_height);
if (size.width > max_width || size.height > max_height) {
- DRM_ERROR("%ux%u\n, exeeds max surface size %ux%u",
+ DRM_ERROR("%ux%u\n, exceeds max surface size %ux%u",
size.width, size.height,
max_width, max_height);
return -EINVAL;