mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
sparc: fix openpromfs compile
Fix openpromfs compilation by adding a missing semicolon in fs/openpromfs/inode.c openprom_mount(). Signed-off-by: Meelis Roos <mroos@linux.ee> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
a7bcf21e60
commit
0e15482566
1 changed files with 1 additions and 1 deletions
|
@ -418,7 +418,7 @@ out_no_root:
|
|||
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 = {
|
||||
|
|
Loading…
Reference in a new issue