commit | ce6cdc474aa5bf4c1a7dc698d83bb0622846a81d | [log] [tgz] |
---|---|---|
author | Al Viro <viro@zeniv.linux.org.uk> | Fri Feb 20 05:59:46 2009 +0000 |
committer | Al Viro <viro@zeniv.linux.org.uk> | Fri Mar 27 14:44:01 2009 -0400 |
tree | 66473a03448d329ffec987cfdcf2ebc7364c32bd | |
parent | 4269590a72934bb901b33b686e20605bf66653c4 [diff] [blame] |
constify dentry_operations: FAT Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
diff --git a/fs/fat/namei_msdos.c b/fs/fat/namei_msdos.c index 7ba03a4..da3f361 100644 --- a/fs/fat/namei_msdos.c +++ b/fs/fat/namei_msdos.c
@@ -188,7 +188,7 @@ goto out; } -static struct dentry_operations msdos_dentry_operations = { +static const struct dentry_operations msdos_dentry_operations = { .d_hash = msdos_hash, .d_compare = msdos_cmp, };