diff options
-rw-r--r-- | fs/hpfs/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/hpfs/super.c b/fs/hpfs/super.c index 037e3e597ff4..0642516d36c8 100644 --- a/fs/hpfs/super.c +++ b/fs/hpfs/super.c | |||
@@ -228,7 +228,7 @@ static struct kmem_cache * hpfs_inode_cachep; | |||
228 | static struct inode *hpfs_alloc_inode(struct super_block *sb) | 228 | static struct inode *hpfs_alloc_inode(struct super_block *sb) |
229 | { | 229 | { |
230 | struct hpfs_inode_info *ei; | 230 | struct hpfs_inode_info *ei; |
231 | ei = (struct hpfs_inode_info *)kmem_cache_alloc(hpfs_inode_cachep, GFP_NOFS); | 231 | ei = kmem_cache_alloc(hpfs_inode_cachep, GFP_NOFS); |
232 | if (!ei) | 232 | if (!ei) |
233 | return NULL; | 233 | return NULL; |
234 | ei->vfs_inode.i_version = 1; | 234 | ei->vfs_inode.i_version = 1; |