diff options
author | Ville Syrjälä <ville.syrjala@linux.intel.com> | 2020-03-13 19:20:46 +0300 |
---|---|---|
committer | Ville Syrjälä <ville.syrjala@linux.intel.com> | 2020-03-18 18:52:36 +0300 |
commit | 267ea759b231e26611f87c8d23d2f3e5ea5a6e71 (patch) | |
tree | aa09d34a40cf783714d94c4523376e0282f69712 /include/drm/drm_connector.h | |
parent | e196e140f95cbe1cbd654f8529346fcdfe496cb7 (diff) | |
download | linux-267ea759b231e26611f87c8d23d2f3e5ea5a6e71.tar.xz |
drm: Constify topology id
Make the topology id const since we don't want to change it.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200313162054.16009-2-ville.syrjala@linux.intel.com
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'include/drm/drm_connector.h')
-rw-r--r-- | include/drm/drm_connector.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/drm/drm_connector.h b/include/drm/drm_connector.h index 19ae6bb5c85b..fd543d1db9b2 100644 --- a/include/drm/drm_connector.h +++ b/include/drm/drm_connector.h @@ -1617,9 +1617,9 @@ struct drm_tile_group { }; struct drm_tile_group *drm_mode_create_tile_group(struct drm_device *dev, - char topology[8]); + const char topology[8]); struct drm_tile_group *drm_mode_get_tile_group(struct drm_device *dev, - char topology[8]); + const char topology[8]); void drm_mode_put_tile_group(struct drm_device *dev, struct drm_tile_group *tg); |