diff options
Diffstat (limited to 'drivers/oprofile/oprofilefs.c')
-rw-r--r-- | drivers/oprofile/oprofilefs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/oprofile/oprofilefs.c b/drivers/oprofile/oprofilefs.c index b62da9b0cbf0..71c2da277d6e 100644 --- a/drivers/oprofile/oprofilefs.c +++ b/drivers/oprofile/oprofilefs.c | |||
@@ -272,10 +272,10 @@ static int oprofilefs_fill_super(struct super_block * sb, void * data, int silen | |||
272 | } | 272 | } |
273 | 273 | ||
274 | 274 | ||
275 | static struct super_block *oprofilefs_get_sb(struct file_system_type *fs_type, | 275 | static int oprofilefs_get_sb(struct file_system_type *fs_type, |
276 | int flags, const char *dev_name, void *data) | 276 | int flags, const char *dev_name, void *data, struct vfsmount *mnt) |
277 | { | 277 | { |
278 | return get_sb_single(fs_type, flags, data, oprofilefs_fill_super); | 278 | return get_sb_single(fs_type, flags, data, oprofilefs_fill_super, mnt); |
279 | } | 279 | } |
280 | 280 | ||
281 | 281 | ||