From: Andrew Lunn Date: Sat, 19 May 2018 20:31:33 +0000 (+0200) Subject: net: dsa: mv88e6xxx: Remove OF check for IRQ domain X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=577941eb56fe5fd95e1a60c6dba3dfaf606e3fde;p=linux.git net: dsa: mv88e6xxx: Remove OF check for IRQ domain An IRQ domain will work without an OF node. It is not possible to reference interrupts via a phandle, but C code can still use irq_find_mapping() to get an interrupt from the domain. Signed-off-by: Andrew Lunn Reviewed-by: Florian Fainelli Signed-off-by: David S. Miller --- diff --git a/drivers/net/dsa/mv88e6xxx/global2.c b/drivers/net/dsa/mv88e6xxx/global2.c index f9bde011a3e6e..91a3cb2452acc 100644 --- a/drivers/net/dsa/mv88e6xxx/global2.c +++ b/drivers/net/dsa/mv88e6xxx/global2.c @@ -1047,9 +1047,6 @@ int mv88e6xxx_g2_irq_setup(struct mv88e6xxx_chip *chip) { int err, irq, virq; - if (!chip->dev->of_node) - return -EINVAL; - chip->g2_irq.domain = irq_domain_add_simple( chip->dev->of_node, 16, 0, &mv88e6xxx_g2_irq_domain_ops, chip); if (!chip->g2_irq.domain)