1
0
Fork 0

bfin_dma: fix initcall return error in proc_dma_init()

Signed-off-by: Steven Miao <realmz6@gmail.com>
Signed-off-by: Bob Liu <lliubbo@gmail.com>
wifi-calibration
Steven Miao 2012-05-03 15:40:26 +08:00 committed by Bob Liu
parent 080bb657eb
commit 1a1214519b
1 changed files with 2 additions and 1 deletions

View File

@ -90,7 +90,8 @@ static const struct file_operations proc_dma_operations = {
static int __init proc_dma_init(void)
{
return proc_create("dma", 0, NULL, &proc_dma_operations) != NULL;
proc_create("dma", 0, NULL, &proc_dma_operations);
return 0;
}
late_initcall(proc_dma_init);
#endif