Commit ce089b54 authored by David Howells's avatar David Howells Committed by Al Viro

drm: Constify drm_proc_list[]

Constify drm_proc_list[] and related pointers.
Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
cc: dri-devel@lists.freedesktop.org
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 0c2f3438
...@@ -49,7 +49,7 @@ ...@@ -49,7 +49,7 @@
/** /**
* Proc file list. * Proc file list.
*/ */
static struct drm_info_list drm_proc_list[] = { static const struct drm_info_list drm_proc_list[] = {
{"name", drm_name_info, 0}, {"name", drm_name_info, 0},
{"vm", drm_vm_info, 0}, {"vm", drm_vm_info, 0},
{"clients", drm_clients_info, 0}, {"clients", drm_clients_info, 0},
...@@ -89,7 +89,7 @@ static const struct file_operations drm_proc_fops = { ...@@ -89,7 +89,7 @@ static const struct file_operations drm_proc_fops = {
* Create a given set of proc files represented by an array of * Create a given set of proc files represented by an array of
* gdm_proc_lists in the given root directory. * gdm_proc_lists in the given root directory.
*/ */
static int drm_proc_create_files(struct drm_info_list *files, int count, static int drm_proc_create_files(const struct drm_info_list *files, int count,
struct proc_dir_entry *root, struct drm_minor *minor) struct proc_dir_entry *root, struct drm_minor *minor)
{ {
struct drm_device *dev = minor->dev; struct drm_device *dev = minor->dev;
...@@ -172,7 +172,7 @@ int drm_proc_init(struct drm_minor *minor, int minor_id, ...@@ -172,7 +172,7 @@ int drm_proc_init(struct drm_minor *minor, int minor_id,
return 0; return 0;
} }
static int drm_proc_remove_files(struct drm_info_list *files, int count, static int drm_proc_remove_files(const struct drm_info_list *files, int count,
struct drm_minor *minor) struct drm_minor *minor)
{ {
struct list_head *pos, *q; struct list_head *pos, *q;
......
...@@ -1022,7 +1022,7 @@ struct drm_info_list { ...@@ -1022,7 +1022,7 @@ struct drm_info_list {
struct drm_info_node { struct drm_info_node {
struct list_head list; struct list_head list;
struct drm_minor *minor; struct drm_minor *minor;
struct drm_info_list *info_ent; const struct drm_info_list *info_ent;
struct dentry *dent; struct dentry *dent;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment