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>
This commit is contained in:
Родитель
080bb657eb
Коммит
1a1214519b
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче