Skip to content

Commit

Permalink
sparc: fix openpromfs compile
Browse files Browse the repository at this point in the history
Fix openpromfs compilation by adding a missing semicolon in
fs/openpromfs/inode.c openprom_mount().

Signed-off-by: Meelis Roos <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
meelisroos authored and torvalds committed Nov 8, 2010
1 parent a7bcf21 commit 0e15482
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/openpromfs/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
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 = {
Expand Down

0 comments on commit 0e15482

Please sign in to comment.