Skip to content

Commit

Permalink
drm/vmwgfx: fix spelling mistake "exeeds" -> "exceeds"
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Colin Ian King authored and Thomas Hellstrom committed Jun 7, 2017
1 parent a1ac633 commit a2e5a3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/vmwgfx/vmwgfx_surface.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit a2e5a3e

Please sign in to comment.