Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 6024
b: refs/heads/master
c: 820d220
h: refs/heads/master
v: v3
  • Loading branch information
James Morris authored and Linus Torvalds committed Aug 27, 2005
1 parent fdbe87f commit 7069ae8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8dbddf17824861f2298de093549e6493d9844835
refs/heads/master: 820d220de400cfaaf846a2d8b5de93f9ea5a9b80
4 changes: 3 additions & 1 deletion trunk/drivers/isdn/capi/capifs.c
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,10 @@ static int __init capifs_init(void)
err = register_filesystem(&capifs_fs_type);
if (!err) {
capifs_mnt = kern_mount(&capifs_fs_type);
if (IS_ERR(capifs_mnt))
if (IS_ERR(capifs_mnt)) {
err = PTR_ERR(capifs_mnt);
unregister_filesystem(&capifs_fs_type);
}
}
if (!err)
printk(KERN_NOTICE "capifs: Rev %s\n", rev);
Expand Down

0 comments on commit 7069ae8

Please sign in to comment.