diff options
author | Lespiau, Damien <damien.lespiau@intel.com> | 2013-10-17 19:09:53 +0100 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2013-11-06 12:04:13 +1000 |
commit | 7d74795b740135b7c89269ce21be51cc5b328de6 (patch) | |
tree | 7e1d9c5ac37171c8536a96774683d3bf17b41c2f /include/drm | |
parent | a276d6ce8a9b146831f3f14b327f74df446a794a (diff) |
drm: Constify struct drm_info_list * arguments
Those functions are just reading data from those pointers.
Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'include/drm')
-rw-r--r-- | include/drm/drmP.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/include/drm/drmP.h b/include/drm/drmP.h index 748c72907829..0da45d930c0a 100644 --- a/include/drm/drmP.h +++ b/include/drm/drmP.h @@ -1477,10 +1477,11 @@ extern struct drm_local_map *drm_getsarea(struct drm_device *dev); #if defined(CONFIG_DEBUG_FS) extern int drm_debugfs_init(struct drm_minor *minor, int minor_id, struct dentry *root); -extern int drm_debugfs_create_files(struct drm_info_list *files, int count, - struct dentry *root, struct drm_minor *minor); -extern int drm_debugfs_remove_files(struct drm_info_list *files, int count, - struct drm_minor *minor); +extern int drm_debugfs_create_files(const struct drm_info_list *files, + int count, struct dentry *root, + struct drm_minor *minor); +extern int drm_debugfs_remove_files(const struct drm_info_list *files, + int count, struct drm_minor *minor); extern int drm_debugfs_cleanup(struct drm_minor *minor); #endif |