Commit 0e154825 authored by Meelis Roos's avatar Meelis Roos Committed by Linus Torvalds

sparc: fix openpromfs compile

Fix openpromfs compilation by adding a missing semicolon in
fs/openpromfs/inode.c openprom_mount().
Signed-off-by: default avatarMeelis Roos <mroos@linux.ee>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent a7bcf21e
...@@ -418,7 +418,7 @@ static int openprom_fill_super(struct super_block *s, void *data, int silent) ...@@ -418,7 +418,7 @@ static int openprom_fill_super(struct super_block *s, void *data, int silent)
static struct dentry *openprom_mount(struct file_system_type *fs_type, static struct dentry *openprom_mount(struct file_system_type *fs_type,
int flags, const char *dev_name, void *data) int flags, const char *dev_name, void *data)
{ {
return mount_single(fs_type, flags, data, openprom_fill_super) return mount_single(fs_type, flags, data, openprom_fill_super);
} }
static struct file_system_type openprom_fs_type = { static struct file_system_type openprom_fs_type = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment