Commit 32dfab3c authored by Kulikov Vasiliy's avatar Kulikov Vasiliy Committed by Paul Mundt

sh: dma: check return value of create_proc_read_entry()

create_proc_read_entry() may fail, if so return -ENOMEM.
Signed-off-by: default avatarKulikov Vasiliy <segooon@gmail.com>
Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent 38409d72
...@@ -412,8 +412,8 @@ EXPORT_SYMBOL(unregister_dmac); ...@@ -412,8 +412,8 @@ EXPORT_SYMBOL(unregister_dmac);
static int __init dma_api_init(void) static int __init dma_api_init(void)
{ {
printk(KERN_NOTICE "DMA: Registering DMA API.\n"); printk(KERN_NOTICE "DMA: Registering DMA API.\n");
create_proc_read_entry("dma", 0, 0, dma_read_proc, 0); return create_proc_read_entry("dma", 0, 0, dma_read_proc, 0)
return 0; ? 0 : -ENOMEM;
} }
subsys_initcall(dma_api_init); subsys_initcall(dma_api_init);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment