]> git.baikalelectronics.ru Git - kernel.git/commitdiff
drm/vmwgfx: fix spelling mistake "exeeds" -> "exceeds"
authorColin Ian King <colin.king@canonical.com>
Sat, 27 May 2017 18:52:30 +0000 (19:52 +0100)
committerThomas Hellstrom <thellstrom@vmware.com>
Wed, 7 Jun 2017 12:38:59 +0000 (14:38 +0200)
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>
drivers/gpu/drm/vmwgfx/vmwgfx_surface.c

index 834bb10973a2eb87ec37c05a364e5d95b2184343..6b70bd259953580204ccecd4ec4334c73e73eed7 100644 (file)
@@ -1498,7 +1498,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;