From: Daniel Vetter Date: Wed, 16 Oct 2013 09:51:54 +0000 (+0200) Subject: drm/i915: constify harder X-Git-Tag: v3.13-rc1~69^2~3^2~75 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e8dfcf789591965abf3ad72856137c35abe3edc2;p=kernel%2Fkernel-generic.git drm/i915: constify harder We not only want const strings, but a const array of them. Reported by checkpatch.pl Cc: Damien Lespiau Acked-by: Damien Lespiau Signed-off-by: Daniel Vetter --- diff --git a/drivers/gpu/drm/i915/i915_debugfs.c b/drivers/gpu/drm/i915/i915_debugfs.c index d1674b6..5fce5d8 100644 --- a/drivers/gpu/drm/i915/i915_debugfs.c +++ b/drivers/gpu/drm/i915/i915_debugfs.c @@ -1909,7 +1909,7 @@ static int i915_pipe_crc_create(struct dentry *root, struct drm_minor *minor, return drm_add_fake_info_node(minor, ent, info); } -static const char *pipe_crc_sources[] = { +static const char * const pipe_crc_sources[] = { "none", "plane1", "plane2", @@ -2054,7 +2054,7 @@ enum intel_pipe_crc_object { PIPE_CRC_OBJECT_PIPE, }; -static const char *pipe_crc_objects[] = { +static const char * const pipe_crc_objects[] = { "pipe", };