projects
/
GitHub
/
MotorolaMobilityLLC
/
kernel-slsi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5f5e323
)
microblaze: Add missing return from debugfs_tlb
author
Michal Simek
<michal.simek@xilinx.com>
Fri, 1 Feb 2013 14:11:21 +0000
(15:11 +0100)
committer
Michal Simek
<michal.simek@xilinx.com>
Tue, 12 Feb 2013 10:24:45 +0000
(11:24 +0100)
Function must return any value.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
arch/microblaze/kernel/setup.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/microblaze/kernel/setup.c
b/arch/microblaze/kernel/setup.c
index 954348f8350557c517a45c4cfc5f71009ec7070d..686b6ba09d9221af3f1bf4c72cfc0310c65d3a72 100644
(file)
--- a/
arch/microblaze/kernel/setup.c
+++ b/
arch/microblaze/kernel/setup.c
@@
-216,6
+216,8
@@
static int __init debugfs_tlb(void)
d = debugfs_create_u32("tlb_skip", S_IRUGO, of_debugfs_root, &tlb_skip);
if (!d)
return -ENOMEM;
+
+ return 0;
}
device_initcall(debugfs_tlb);
# endif