diff options
| author | Al Viro <viro@zeniv.linux.org.uk> | 2009-02-20 01:02:01 -0500 |
|---|---|---|
| committer | Al Viro <viro@zeniv.linux.org.uk> | 2009-03-27 14:44:03 -0400 |
| commit | 296c2d86635bd6ecd8f282dfff18bb68fb4fc512 (patch) | |
| tree | 1a8cd312d4e624f3b4b1d93086630dd0e75465bd | |
| parent | ee1ec32903fc3139af00ebc7ee483dabca3f4fa5 (diff) | |
constify dentry_operations: configfs
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
| -rw-r--r-- | fs/configfs/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/configfs/dir.c b/fs/configfs/dir.c index 8e93341f3e82..05373db21a4e 100644 --- a/fs/configfs/dir.c +++ b/fs/configfs/dir.c | |||
| @@ -72,7 +72,7 @@ static int configfs_d_delete(struct dentry *dentry) | |||
| 72 | return 1; | 72 | return 1; |
| 73 | } | 73 | } |
| 74 | 74 | ||
| 75 | static struct dentry_operations configfs_dentry_ops = { | 75 | static const struct dentry_operations configfs_dentry_ops = { |
| 76 | .d_iput = configfs_d_iput, | 76 | .d_iput = configfs_d_iput, |
| 77 | /* simple_delete_dentry() isn't exported */ | 77 | /* simple_delete_dentry() isn't exported */ |
| 78 | .d_delete = configfs_d_delete, | 78 | .d_delete = configfs_d_delete, |
