提交 45535732 编写于 作者: T Thomas Gleixner

genirq: use kzalloc instead of explicit zero initialization

Impact: simplification
Signed-off-by: NThomas Gleixner <tglx@linutronix.de>
Reviewed-by: NPeter Zijlstra <peterz@infradead.org>
上级 bedd30d9
...@@ -737,15 +737,13 @@ int request_irq(unsigned int irq, irq_handler_t handler, ...@@ -737,15 +737,13 @@ int request_irq(unsigned int irq, irq_handler_t handler,
if (!handler) if (!handler)
return -EINVAL; return -EINVAL;
action = kmalloc(sizeof(struct irqaction), GFP_KERNEL); action = kzalloc(sizeof(struct irqaction), GFP_KERNEL);
if (!action) if (!action)
return -ENOMEM; return -ENOMEM;
action->handler = handler; action->handler = handler;
action->flags = irqflags; action->flags = irqflags;
cpus_clear(action->mask);
action->name = devname; action->name = devname;
action->next = NULL;
action->dev_id = dev_id; action->dev_id = dev_id;
retval = __setup_irq(irq, desc, action); retval = __setup_irq(irq, desc, action);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册