diff options
author | Meelis Roos <[email protected]> | 2010-11-08 13:38:14 -0800 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2010-11-08 14:29:39 -0800 |
commit | 0e15482566b752718e7225168380904f1d0cdfa3 (patch) | |
tree | 5f7f6b774b0d6d35606dd5ef755f8f9ef6b3738a | |
parent | a7bcf21e60c73cb7f7c13fad928967d7e47c3cac (diff) |
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]>
-rw-r--r-- | fs/openpromfs/inode.c | 2 |
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 = { |