summaryrefslogtreecommitdiff
path: root/include/drm/drm_property.h
diff options
context:
space:
mode:
authorJyri Sarha <jsarha@ti.com>2017-05-30 19:29:55 +0300
committerVille Syrjälä <ville.syrjala@linux.intel.com>2017-06-08 21:18:07 +0300
commitdc629141c3336ae4b03c5fef5fb7bf1058752aed (patch)
tree6a6d56b71988bf30ddeb62faa4d3b8fadd94e4f6 /include/drm/drm_property.h
parent2af168e171f75c783366164c7c810e8ee1440405 (diff)
drm: Add const to name field declaration in struct drm_prop_enum_list
There is no reason why the name field should not be const, but several why it should. The struct should only be used by drm_property_create_enum() and there the name-field from the struct is passed to drm_property_add_enum(), which takes a const char * as a parameter. Signed-off-by: Jyri Sarha <jsarha@ti.com> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Link: http://patchwork.freedesktop.org/patch/msgid/5dd3b6a1e20452bd8abdcbc55d1e8d7f56262266.1496161066.git.jsarha@ti.com
Diffstat (limited to 'include/drm/drm_property.h')
-rw-r--r--include/drm/drm_property.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/drm/drm_property.h b/include/drm/drm_property.h
index 13e8c17d1c79..619868dc08d8 100644
--- a/include/drm/drm_property.h
+++ b/include/drm/drm_property.h
@@ -214,7 +214,7 @@ struct drm_property_blob {
struct drm_prop_enum_list {
int type;
- char *name;
+ const char *name;
};
#define obj_to_property(x) container_of(x, struct drm_property, base)