powerpc/corenet: Change criteria to set MPIC_ENABLE_COREINT
authorChristophe Leroy <christophe.leroy@csgroup.eu>
Fri, 3 Sep 2021 11:18:43 +0000 (11:18 +0000)
committerMichael Ellerman <mpe@ellerman.id.au>
Mon, 7 Feb 2022 10:03:10 +0000 (21:03 +1100)
Don't use ppc_md function comparison.

Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/c8ef82ee5f2713f4c36eb5d2d49b0905c7472801.1630667612.git.christophe.leroy@csgroup.eu
arch/powerpc/platforms/85xx/corenet_generic.c
arch/powerpc/sysdev/mpic.c

index 8d60290..17ae75d 100644 (file)
@@ -37,7 +37,7 @@ void __init corenet_gen_pic_init(void)
        unsigned int flags = MPIC_BIG_ENDIAN | MPIC_SINGLE_DEST_CPU |
                MPIC_NO_RESET;
 
-       if (ppc_md.get_irq == mpic_get_coreint_irq)
+       if (!IS_ENABLED(CONFIG_HOTPLUG_CPU) && !IS_ENABLED(CONFIG_KEXEC_CORE))
                flags |= MPIC_ENABLE_COREINT;
 
        mpic = mpic_alloc(NULL, 0, flags, 0, 512, " OpenPIC  ");
index d5cb48b..dbcbaa4 100644 (file)
@@ -1404,10 +1404,8 @@ struct mpic * __init mpic_alloc(struct device_node *node,
         * with device trees generated by older versions of QEMU.
         * fsl_version will be zero if MPIC_FSL is not set.
         */
-       if (fsl_version < 0x400 && (flags & MPIC_ENABLE_COREINT)) {
-               WARN_ON(ppc_md.get_irq != mpic_get_coreint_irq);
+       if (fsl_version < 0x400 && (flags & MPIC_ENABLE_COREINT))
                ppc_md.get_irq = mpic_get_irq;
-       }
 
        /* Reset */