From: Colin Ian King Date: Wed, 2 May 2018 10:10:48 +0000 (+0100) Subject: gpu: drm: sti: fix spelling mistake: "initialze" -> "initialize" X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=304f72e5947d63682159d2f575f56607592df500;p=linux.git gpu: drm: sti: fix spelling mistake: "initialze" -> "initialize" Trivial fix to spelling mistake in DRM_ERROR error message Signed-off-by: Colin Ian King Signed-off-by: Daniel Vetter Link: https://patchwork.freedesktop.org/patch/msgid/20180502101048.8442-1-colin.king@canonical.com --- diff --git a/drivers/gpu/drm/sti/sti_crtc.c b/drivers/gpu/drm/sti/sti_crtc.c index 21e50d7b1f86c..5824e6aca8f4a 100644 --- a/drivers/gpu/drm/sti/sti_crtc.c +++ b/drivers/gpu/drm/sti/sti_crtc.c @@ -357,7 +357,7 @@ int sti_crtc_init(struct drm_device *drm_dev, struct sti_mixer *mixer, res = drm_crtc_init_with_planes(drm_dev, crtc, primary, cursor, &sti_crtc_funcs, NULL); if (res) { - DRM_ERROR("Can't initialze CRTC\n"); + DRM_ERROR("Can't initialize CRTC\n"); return -EINVAL; }