afe8dc2547
mips_cpu_intc_init() is used for DT-based initialization of the CPU IRQ domain. Give it a more appropriate name. Signed-off-by: Andrew Bresticker <abrestic@chromium.org> Reviewed-by: Qais Yousef <qais.yousef@imgtec.com> Tested-by: Qais Yousef <qais.yousef@imgtec.com> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Jason Cooper <jason@lakedaemon.net> Cc: Andrew Bresticker <abrestic@chromium.org> Cc: Jeffrey Deans <jeffrey.deans@imgtec.com> Cc: Markos Chandras <markos.chandras@imgtec.com> Cc: Paul Burton <paul.burton@imgtec.com> Cc: Qais Yousef <qais.yousef@imgtec.com> Cc: Jonas Gorski <jogo@openwrt.org> Cc: John Crispin <blogic@openwrt.org> Cc: David Daney <ddaney.cavm@gmail.com> Cc: linux-mips@linux-mips.org Cc: linux-kernel@vger.kernel.org Patchwork: https://patchwork.linux-mips.org/patch/7800/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
27 lines
708 B
C
27 lines
708 B
C
/*
|
|
* include/asm-mips/irq_cpu.h
|
|
*
|
|
* MIPS CPU interrupt definitions.
|
|
*
|
|
* Copyright (C) 2002 Maciej W. Rozycki
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version
|
|
* 2 of the License, or (at your option) any later version.
|
|
*/
|
|
#ifndef _ASM_IRQ_CPU_H
|
|
#define _ASM_IRQ_CPU_H
|
|
|
|
extern void mips_cpu_irq_init(void);
|
|
extern void rm7k_cpu_irq_init(void);
|
|
extern void rm9k_cpu_irq_init(void);
|
|
|
|
#ifdef CONFIG_IRQ_DOMAIN
|
|
struct device_node;
|
|
extern int mips_cpu_irq_of_init(struct device_node *of_node,
|
|
struct device_node *parent);
|
|
#endif
|
|
|
|
#endif /* _ASM_IRQ_CPU_H */
|