mirror of
https://github.com/torvalds/linux.git
synced 2024-12-03 17:41:22 +00:00
3f1770c0e6
linux/irqchip/mips-gic.h is included in a few files that don't actually use it at all. Remove these unnecessary inclusions in preparation for removing the header. Signed-off-by: Paul Burton <paul.burton@imgtec.com> Cc: Jason Cooper <jason@lakedaemon.net> Cc: Marc Zyngier <marc.zyngier@arm.com> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/17048/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
28 lines
617 B
C
28 lines
617 B
C
/*
|
|
* Pistachio IRQ setup
|
|
*
|
|
* Copyright (C) 2014 Google, Inc.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms and conditions of the GNU General Public License,
|
|
* version 2, as published by the Free Software Foundation.
|
|
*/
|
|
|
|
#include <linux/init.h>
|
|
#include <linux/irqchip.h>
|
|
#include <linux/kernel.h>
|
|
|
|
#include <asm/cpu-features.h>
|
|
#include <asm/irq_cpu.h>
|
|
|
|
void __init arch_init_irq(void)
|
|
{
|
|
pr_info("EIC is %s\n", cpu_has_veic ? "on" : "off");
|
|
pr_info("VINT is %s\n", cpu_has_vint ? "on" : "off");
|
|
|
|
if (!cpu_has_veic)
|
|
mips_cpu_irq_init();
|
|
|
|
irqchip_init();
|
|
}
|