提交 4a983ed4 编写于 作者: T Thomas Gleixner

ia64: hp-sim: Cleanup direct access to irq_desc

Use accessor functions instead of open coded access.
Signed-off-by: NThomas Gleixner <tglx@linutronix.de>
上级 35d75b0e
......@@ -40,12 +40,12 @@ static struct irq_chip irq_type_hp_sim = {
void __init
hpsim_irq_init (void)
{
struct irq_desc *idesc;
int i;
for (i = 0; i < NR_IRQS; ++i) {
idesc = irq_desc + i;
if (idesc->chip == &no_irq_chip)
idesc->chip = &irq_type_hp_sim;
for_each_active_irq(i) {
struct irq_chip *chip = get_irq_chip(i);
if (chip == &no_irq_chip)
set_irq_chip(i, &irq_type_hp_sim);
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册