Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fdb888de authored by Colin Ian King's avatar Colin Ian King Committed by Eric Anholt
Browse files

drm/vc4: fix spelling mistake: "dimesions" -> "dimensions"



Trivial fix to spelling mistake in DRM_ERROR message and split
over two lines to clean up a "line over 80 characters" checkpatch
warning.

Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Reviewed-by: default avatarEric Anholt <eric@anholt.net>
Link: http://patchwork.freedesktop.org/patch/msgid/20170514170016.6802-1-colin.king@canonical.com
parent b70ee236
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -172,7 +172,8 @@ vc4_check_tex_size(struct vc4_exec_info *exec, struct drm_gem_cma_object *fbo,
	 * our math.
	 * our math.
	 */
	 */
	if (width > 4096 || height > 4096) {
	if (width > 4096 || height > 4096) {
		DRM_ERROR("Surface dimesions (%d,%d) too large", width, height);
		DRM_ERROR("Surface dimensions (%d,%d) too large",
			  width, height);
		return false;
		return false;
	}
	}