diff options
Diffstat (limited to 'fs/hpfs/dentry.c')
| -rw-r--r-- | fs/hpfs/dentry.c | 7 | 
1 files changed, 1 insertions, 6 deletions
diff --git a/fs/hpfs/dentry.c b/fs/hpfs/dentry.c index 32c13a94e1e..05d4816e4e7 100644 --- a/fs/hpfs/dentry.c +++ b/fs/hpfs/dentry.c @@ -58,12 +58,7 @@ static int hpfs_compare_dentry(const struct dentry *parent,  	return 0;  } -static const struct dentry_operations hpfs_dentry_operations = { +const struct dentry_operations hpfs_dentry_operations = {  	.d_hash		= hpfs_hash_dentry,  	.d_compare	= hpfs_compare_dentry,  }; - -void hpfs_set_dentry_operations(struct dentry *dentry) -{ -	d_set_d_op(dentry, &hpfs_dentry_operations); -}  |