mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 12:11:40 +00:00
MIPS: SGI-IP27: use WARN_ON() output
WARN_ON() propagates the result of conditional expression, and it can be used to return early in the following expression in the arch_init_irq(). This is a no-op cleanup, except that compiler may optimize the error paths better because WARN_ON() implies 'unlikely()'. Signed-off-by: Yury Norov <yury.norov@gmail.com> Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
This commit is contained in:
parent
156e6498fc
commit
bfe4ab93c8
@ -289,13 +289,12 @@ void __init arch_init_irq(void)
|
||||
bitmap_set(hub_irq_map, NI_BRDCAST_ERR_A, MSC_PANIC_INTR - NI_BRDCAST_ERR_A + 1);
|
||||
|
||||
fn = irq_domain_alloc_named_fwnode("HUB");
|
||||
WARN_ON(fn == NULL);
|
||||
if (!fn)
|
||||
if (WARN_ON(fn == NULL))
|
||||
return;
|
||||
|
||||
domain = irq_domain_create_linear(fn, IP27_HUB_IRQ_COUNT,
|
||||
&hub_domain_ops, NULL);
|
||||
WARN_ON(domain == NULL);
|
||||
if (!domain)
|
||||
if (WARN_ON(domain == NULL))
|
||||
return;
|
||||
|
||||
irq_set_default_host(domain);
|
||||
|
Loading…
Reference in New Issue
Block a user