summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/platforms/8xx/ep88xc.c
diff options
context:
space:
mode:
authorChristophe Leroy <christophe.leroy@csgroup.eu>2022-04-06 08:23:20 +0200
committerMichael Ellerman <mpe@ellerman.id.au>2022-05-11 15:06:40 +0200
commite3ba31b78074bee155662edccd9ca00324087e04 (patch)
tree3fcf78c93a0f864ec2d8e21f122eeaa327aa36a5 /arch/powerpc/platforms/8xx/ep88xc.c
parentpowerpc/8xx: Convert CPM1 interrupt controller to platform_device (diff)
downloadlinux-e3ba31b78074bee155662edccd9ca00324087e04.tar.xz
linux-e3ba31b78074bee155662edccd9ca00324087e04.zip
powerpc/8xx: Remove mpc8xx_pics_init()
mpc8xx_pics_init() is now only a trampoline to mpc8xx_pic_init(). Remove mpc8xx_pics_init() and use mpc8xx_pic_init() directly. Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://lore.kernel.org/r/9c55a698adb5ba3b7b77023170fcaf0acb5d2d81.1649226186.git.christophe.leroy@csgroup.eu
Diffstat (limited to 'arch/powerpc/platforms/8xx/ep88xc.c')
-rw-r--r--arch/powerpc/platforms/8xx/ep88xc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/8xx/ep88xc.c b/arch/powerpc/platforms/8xx/ep88xc.c
index ebcf34a14789..b3b22520b435 100644
--- a/arch/powerpc/platforms/8xx/ep88xc.c
+++ b/arch/powerpc/platforms/8xx/ep88xc.c
@@ -20,6 +20,7 @@
#include <asm/cpm1.h>
#include "mpc8xx.h"
+#include "pic.h"
struct cpm_pin {
int port, pin, flags;
@@ -166,7 +167,7 @@ define_machine(ep88xc) {
.name = "Embedded Planet EP88xC",
.probe = ep88xc_probe,
.setup_arch = ep88xc_setup_arch,
- .init_IRQ = mpc8xx_pics_init,
+ .init_IRQ = mpc8xx_pic_init,
.get_irq = mpc8xx_get_irq,
.restart = mpc8xx_restart,
.calibrate_decr = mpc8xx_calibrate_decr,