constify dentry_operations: procfs

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
Al Viro
2009-02-20 05:58:47 +00:00
parent 5a3fd05a9b
commit d72f71eb0e
3 changed files with 6 additions and 6 deletions

View File

@ -363,7 +363,7 @@ static int proc_delete_dentry(struct dentry * dentry)
return 1;
}
static struct dentry_operations proc_dentry_operations =
static const struct dentry_operations proc_dentry_operations =
{
.d_delete = proc_delete_dentry,
};