aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/xen/xenfs
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/xen/xenfs')
-rw-r--r--drivers/xen/xenfs/super.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/xen/xenfs/super.c b/drivers/xen/xenfs/super.c
index f6339d11d59c..990ee42167a1 100644
--- a/drivers/xen/xenfs/super.c
+++ b/drivers/xen/xenfs/super.c
@@ -121,9 +121,9 @@ static int xenfs_fill_super(struct super_block *sb, void *data, int silent)
121 return rc; 121 return rc;
122} 122}
123 123
124static int xenfs_mount(struct file_system_type *fs_type, 124static struct dentry *xenfs_mount(struct file_system_type *fs_type,
125 int flags, const char *dev_name, 125 int flags, const char *dev_name,
126 void *data) 126 void *data)
127{ 127{
128 return mount_single(fs_type, flags, data, xenfs_fill_super); 128 return mount_single(fs_type, flags, data, xenfs_fill_super);
129} 129}