summaryrefslogtreecommitdiffstats
path: root/fs/openpromfs
diff options
context:
space:
mode:
authorMeelis Roos2010-11-08 22:38:14 +0100
committerLinus Torvalds2010-11-08 23:29:39 +0100
commit0e15482566b752718e7225168380904f1d0cdfa3 (patch)
tree5f7f6b774b0d6d35606dd5ef755f8f9ef6b3738a /fs/openpromfs
parentMerge branch 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tyt... (diff)
downloadkernel-qcow2-linux-0e15482566b752718e7225168380904f1d0cdfa3.tar.gz
kernel-qcow2-linux-0e15482566b752718e7225168380904f1d0cdfa3.tar.xz
kernel-qcow2-linux-0e15482566b752718e7225168380904f1d0cdfa3.zip
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>
Diffstat (limited to 'fs/openpromfs')
-rw-r--r--fs/openpromfs/inode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/openpromfs/inode.c b/fs/openpromfs/inode.c
index ddb1f41376e5..911e61f348fc 100644
--- a/fs/openpromfs/inode.c
+++ b/fs/openpromfs/inode.c
@@ -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 = {