提交 3683e9e8 编写于 作者: H Himanshu Jha 提交者: Lee Jones

mfd: ab8500-debugfs: Use kasprintf

Use kasprintf instead of combination of kmalloc and sprintf.
Signed-off-by: NHimanshu Jha <himanshujha199640@gmail.com>
Signed-off-by: NLee Jones <lee.jones@linaro.org>
上级 500f9ff5
......@@ -2519,11 +2519,10 @@ static ssize_t ab8500_subscribe_write(struct file *file,
if (!dev_attr[irq_index])
return -ENOMEM;
event_name[irq_index] = kmalloc(count, GFP_KERNEL);
event_name[irq_index] = kasprintf(GFP_KERNEL, "%lu", user_val);
if (!event_name[irq_index])
return -ENOMEM;
sprintf(event_name[irq_index], "%lu", user_val);
dev_attr[irq_index]->show = show_irq;
dev_attr[irq_index]->store = NULL;
dev_attr[irq_index]->attr.name = event_name[irq_index];
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册