microblaze: Add missing return from debugfs_tlb

Function must return any value.

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
This commit is contained in:
Michal Simek 2013-02-01 15:11:21 +01:00
parent 5f5e323695
commit 5b3084b582
1 changed files with 2 additions and 0 deletions

View File

@ -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