Skip to content

Commit

Permalink
microblaze: Add missing return from debugfs_tlb
Browse files Browse the repository at this point in the history
Function must return any value.

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
  • Loading branch information
Michal Simek committed Feb 12, 2013
1 parent 5f5e323 commit 5b3084b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions arch/microblaze/kernel/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5b3084b

Please sign in to comment.