Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 252027
b: refs/heads/master
c: dcb3a08
h: refs/heads/master
i:
  252025: b05fc29
  252023: 90abf8d
v: v3
  • Loading branch information
Jiri Slaby authored and Linus Torvalds committed May 27, 2011
1 parent 85816e5 commit 9eb08a3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 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: 02d54f092697b6046e466e447cc694b0e6ed45d0
refs/heads/master: dcb3a08e69629ea65a3e9647da730bfaf670497d
Original file line number Diff line number Diff line change
Expand Up @@ -464,9 +464,8 @@ static int __init configfs_example_init(void)
return 0;

out_unregister:
for (; i >= 0; i--) {
for (i--; i >= 0; i--)
configfs_unregister_subsystem(example_subsys[i]);
}

return ret;
}
Expand All @@ -475,9 +474,8 @@ static void __exit configfs_example_exit(void)
{
int i;

for (i = 0; example_subsys[i]; i++) {
for (i = 0; example_subsys[i]; i++)
configfs_unregister_subsystem(example_subsys[i]);
}
}

module_init(configfs_example_init);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -427,9 +427,8 @@ static int __init configfs_example_init(void)
return 0;

out_unregister:
for (; i >= 0; i--) {
for (i--; i >= 0; i--)
configfs_unregister_subsystem(example_subsys[i]);
}

return ret;
}
Expand All @@ -438,9 +437,8 @@ static void __exit configfs_example_exit(void)
{
int i;

for (i = 0; example_subsys[i]; i++) {
for (i = 0; example_subsys[i]; i++)
configfs_unregister_subsystem(example_subsys[i]);
}
}

module_init(configfs_example_init);
Expand Down

0 comments on commit 9eb08a3

Please sign in to comment.