mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 14:53:58 -04:00
irqdomain: Rename irq_set_default_host() to irq_set_default_domain()
Naming interrupt domains host is confusing at best and the irqdomain code uses both domain and host inconsistently. Therefore rename irq_set_default_host() to irq_set_default_domain(). Signed-off-by: Jiri Slaby (SUSE) <jirislaby@kernel.org> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Link: https://lore.kernel.org/all/20250319092951.37667-3-jirislaby@kernel.org
This commit is contained in:
committed by
Thomas Gleixner
parent
e48e99b6ed
commit
825dfab23b
@@ -291,5 +291,5 @@ void __init ehv_pic_init(void)
|
||||
ehv_pic->coreint_flag = of_property_read_bool(np, "has-external-proxy");
|
||||
|
||||
global_ehv_pic = ehv_pic;
|
||||
irq_set_default_host(global_ehv_pic->irqhost);
|
||||
irq_set_default_domain(global_ehv_pic->irqhost);
|
||||
}
|
||||
|
||||
@@ -757,7 +757,7 @@ struct ipic * __init ipic_init(struct device_node *node, unsigned int flags)
|
||||
ipic_write(ipic->regs, IPIC_SEMSR, temp);
|
||||
|
||||
primary_ipic = ipic;
|
||||
irq_set_default_host(primary_ipic->irqhost);
|
||||
irq_set_default_domain(primary_ipic->irqhost);
|
||||
|
||||
ipic_write(ipic->regs, IPIC_SIMSR_H, 0);
|
||||
ipic_write(ipic->regs, IPIC_SIMSR_L, 0);
|
||||
|
||||
@@ -1520,7 +1520,7 @@ struct mpic * __init mpic_alloc(struct device_node *node,
|
||||
|
||||
if (!(mpic->flags & MPIC_SECONDARY)) {
|
||||
mpic_primary = mpic;
|
||||
irq_set_default_host(mpic->irqhost);
|
||||
irq_set_default_domain(mpic->irqhost);
|
||||
}
|
||||
|
||||
return mpic;
|
||||
|
||||
@@ -472,7 +472,7 @@ static int __init xics_allocate_domain(void)
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
irq_set_default_host(xics_host);
|
||||
irq_set_default_domain(xics_host);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
@@ -1467,7 +1467,7 @@ static void __init xive_init_host(struct device_node *np)
|
||||
xive_irq_domain = irq_domain_add_tree(np, &xive_irq_domain_ops, NULL);
|
||||
if (WARN_ON(xive_irq_domain == NULL))
|
||||
return;
|
||||
irq_set_default_host(xive_irq_domain);
|
||||
irq_set_default_domain(xive_irq_domain);
|
||||
}
|
||||
|
||||
static void xive_cleanup_cpu_queues(unsigned int cpu, struct xive_cpu *xc)
|
||||
|
||||
Reference in New Issue
Block a user