Skip to content

Commit 0e15482

Browse files
meelisroostorvalds
authored andcommitted
sparc: fix openpromfs compile
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]>
1 parent a7bcf21 commit 0e15482

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fs/openpromfs/inode.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ static int openprom_fill_super(struct super_block *s, void *data, int silent)
418418
static struct dentry *openprom_mount(struct file_system_type *fs_type,
419419
int flags, const char *dev_name, void *data)
420420
{
421-
return mount_single(fs_type, flags, data, openprom_fill_super)
421+
return mount_single(fs_type, flags, data, openprom_fill_super);
422422
}
423423

424424
static struct file_system_type openprom_fs_type = {

0 commit comments

Comments
 (0)