diff options
author | David Howells <dhowells@redhat.com> | 2013-04-12 15:23:25 +0100 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-05-01 17:29:43 -0400 |
commit | ce089b5472f7d0321bcb2cbc22d85bac15e4778b (patch) | |
tree | 43af07022796d28494460ffb5d796a811bf0a245 /include/drm | |
parent | 0c2f343825192044ffaf542854d478e00f7f0a59 (diff) | |
download | op-kernel-dev-ce089b5472f7d0321bcb2cbc22d85bac15e4778b.zip op-kernel-dev-ce089b5472f7d0321bcb2cbc22d85bac15e4778b.tar.gz |
drm: Constify drm_proc_list[]
Constify drm_proc_list[] and related pointers.
Signed-off-by: David Howells <dhowells@redhat.com>
cc: dri-devel@lists.freedesktop.org
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include/drm')
-rw-r--r-- | include/drm/drmP.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/drm/drmP.h b/include/drm/drmP.h index 2d94d74..af53320 100644 --- a/include/drm/drmP.h +++ b/include/drm/drmP.h @@ -1022,7 +1022,7 @@ struct drm_info_list { struct drm_info_node { struct list_head list; struct drm_minor *minor; - struct drm_info_list *info_ent; + const struct drm_info_list *info_ent; struct dentry *dent; }; |