OSDN Git Service

drm/vc4: fix spelling mistake: "dimesions" -> "dimensions"
authorColin Ian King <colin.king@canonical.com>
Sun, 14 May 2017 17:00:16 +0000 (18:00 +0100)
committerEric Anholt <eric@anholt.net>
Tue, 16 May 2017 16:42:20 +0000 (09:42 -0700)
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: Colin Ian King <colin.king@canonical.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
Link: http://patchwork.freedesktop.org/patch/msgid/20170514170016.6802-1-colin.king@canonical.com
drivers/gpu/drm/vc4/vc4_validate.c

index 3de8f11..814b512 100644 (file)
@@ -172,7 +172,8 @@ vc4_check_tex_size(struct vc4_exec_info *exec, struct drm_gem_cma_object *fbo,
         * our math.
         */
        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;
        }