Skip to content

Commit

Permalink
MIPS: Move gic.h to include/linux/irqchip/mips-gic.h
Browse files Browse the repository at this point in the history
Now that the MIPS GIC irqchip lives in drivers/irqchip/, move
its header over to include/linux/irqchip/.

Signed-off-by: Andrew Bresticker <abrestic@chromium.org>
Cc: Daniel Lezcano <daniel.lezcano@linaro.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Jason Cooper <jason@lakedaemon.net>
Cc: Paul Burton <paul.burton@imgtec.com>
Cc: Qais Yousef <qais.yousef@imgtec.com>
Cc: John Crispin <blogic@openwrt.org>
Cc: linux-mips@linux-mips.org
Cc: linux-kernel@vger.kernel.org
Patchwork: https://patchwork.linux-mips.org/patch/8129/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
  • Loading branch information
Andrew Bresticker authored and Ralf Baechle committed Nov 24, 2014
1 parent 5f68fea commit 4060bbe
Show file tree
Hide file tree
Showing 18 changed files with 17 additions and 18 deletions.
2 changes: 1 addition & 1 deletion arch/mips/include/asm/mips-boards/maltaint.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#ifndef _MIPS_MALTAINT_H
#define _MIPS_MALTAINT_H

#include <asm/gic.h>
#include <linux/irqchip/mips-gic.h>

/*
* Interrupts 0..15 are used for Malta ISA compatible interrupts
Expand Down
2 changes: 1 addition & 1 deletion arch/mips/include/asm/mips-boards/sead3int.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#ifndef _MIPS_SEAD3INT_H
#define _MIPS_SEAD3INT_H

#include <asm/gic.h>
#include <linux/irqchip/mips-gic.h>

/* SEAD-3 GIC address space definitions. */
#define GIC_BASE_ADDR 0x1b1c0000
Expand Down
2 changes: 1 addition & 1 deletion arch/mips/kernel/cevt-gic.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
#include <linux/percpu.h>
#include <linux/smp.h>
#include <linux/irq.h>
#include <linux/irqchip/mips-gic.h>

#include <asm/time.h>
#include <asm/gic.h>
#include <asm/mips-boards/maltaint.h>

DEFINE_PER_CPU(struct clock_event_device, gic_clockevent_device);
Expand Down
2 changes: 1 addition & 1 deletion arch/mips/kernel/cevt-r4k.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
#include <linux/percpu.h>
#include <linux/smp.h>
#include <linux/irq.h>
#include <linux/irqchip/mips-gic.h>

#include <asm/time.h>
#include <asm/cevt-r4k.h>
#include <asm/gic.h>

static int mips_next_event(unsigned long delta,
struct clock_event_device *evt)
Expand Down
3 changes: 1 addition & 2 deletions arch/mips/kernel/csrc-gic.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@
* Copyright (C) 2012 MIPS Technologies, Inc. All rights reserved.
*/
#include <linux/init.h>
#include <linux/irqchip/mips-gic.h>
#include <linux/time.h>

#include <asm/gic.h>

static cycle_t gic_hpt_read(struct clocksource *cs)
{
return gic_read_count();
Expand Down
2 changes: 1 addition & 1 deletion arch/mips/kernel/smp-cmp.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
#include <linux/cpumask.h>
#include <linux/interrupt.h>
#include <linux/compiler.h>
#include <linux/irqchip/mips-gic.h>

#include <linux/atomic.h>
#include <asm/cacheflush.h>
Expand All @@ -37,7 +38,6 @@
#include <asm/mipsmtregs.h>
#include <asm/mips_mt.h>
#include <asm/amon.h>
#include <asm/gic.h>

static void cmp_init_secondary(void)
{
Expand Down
2 changes: 1 addition & 1 deletion arch/mips/kernel/smp-cps.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
*/

#include <linux/io.h>
#include <linux/irqchip/mips-gic.h>
#include <linux/sched.h>
#include <linux/slab.h>
#include <linux/smp.h>
#include <linux/types.h>

#include <asm/bcache.h>
#include <asm/gic.h>
#include <asm/mips-cm.h>
#include <asm/mips-cpc.h>
#include <asm/mips_mt.h>
Expand Down
2 changes: 1 addition & 1 deletion arch/mips/kernel/smp-gic.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
* option) any later version.
*/

#include <linux/irqchip/mips-gic.h>
#include <linux/printk.h>

#include <asm/gic.h>
#include <asm/mips-cpc.h>
#include <asm/smp-ops.h>

Expand Down
2 changes: 1 addition & 1 deletion arch/mips/kernel/smp-mt.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#include <linux/sched.h>
#include <linux/cpumask.h>
#include <linux/interrupt.h>
#include <linux/irqchip/mips-gic.h>
#include <linux/compiler.h>
#include <linux/smp.h>

Expand All @@ -34,7 +35,6 @@
#include <asm/mipsregs.h>
#include <asm/mipsmtregs.h>
#include <asm/mips_mt.h>
#include <asm/gic.h>

static void __init smvp_copy_vpe_config(void)
{
Expand Down
2 changes: 1 addition & 1 deletion arch/mips/mti-malta/malta-int.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
#include <linux/smp.h>
#include <linux/interrupt.h>
#include <linux/io.h>
#include <linux/irqchip/mips-gic.h>
#include <linux/kernel_stat.h>
#include <linux/kernel.h>
#include <linux/random.h>
Expand All @@ -33,7 +34,6 @@
#include <asm/mips-boards/generic.h>
#include <asm/mips-boards/msc01_pci.h>
#include <asm/msc01_ic.h>
#include <asm/gic.h>
#include <asm/setup.h>
#include <asm/rtlx.h>

Expand Down
2 changes: 1 addition & 1 deletion arch/mips/mti-malta/malta-time.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
#include <linux/sched.h>
#include <linux/spinlock.h>
#include <linux/interrupt.h>
#include <linux/irqchip/mips-gic.h>
#include <linux/timex.h>
#include <linux/mc146818rtc.h>

Expand All @@ -37,7 +38,6 @@
#include <asm/time.h>
#include <asm/mc146818-time.h>
#include <asm/msc01_ic.h>
#include <asm/gic.h>

#include <asm/mips-boards/generic.h>
#include <asm/mips-boards/maltaint.h>
Expand Down
2 changes: 1 addition & 1 deletion arch/mips/mti-sead3/sead3-ehci.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
#include <linux/irq.h>
#include <linux/dma-mapping.h>
#include <linux/platform_device.h>
#include <linux/irqchip/mips-gic.h>

#include <asm/gic.h>
#include <asm/mips-boards/sead3int.h>

struct resource ehci_resources[] = {
Expand Down
2 changes: 1 addition & 1 deletion arch/mips/mti-sead3/sead3-int.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
*/
#include <linux/init.h>
#include <linux/irq.h>
#include <linux/irqchip/mips-gic.h>
#include <linux/io.h>

#include <asm/gic.h>
#include <asm/irq_cpu.h>
#include <asm/setup.h>

Expand Down
2 changes: 1 addition & 1 deletion arch/mips/mti-sead3/sead3-net.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
*/
#include <linux/module.h>
#include <linux/irq.h>
#include <linux/irqchip/mips-gic.h>
#include <linux/platform_device.h>
#include <linux/smsc911x.h>

#include <asm/gic.h>
#include <asm/mips-boards/sead3int.h>

static struct smsc911x_platform_config sead3_smsc911x_data = {
Expand Down
2 changes: 1 addition & 1 deletion arch/mips/mti-sead3/sead3-platform.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
*/
#include <linux/module.h>
#include <linux/init.h>
#include <linux/irqchip/mips-gic.h>
#include <linux/serial_8250.h>

#include <asm/gic.h>
#include <asm/mips-boards/sead3int.h>

#define UART(base) \
Expand Down
2 changes: 1 addition & 1 deletion arch/mips/mti-sead3/sead3-time.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
* Copyright (C) 2012 MIPS Technologies, Inc. All rights reserved.
*/
#include <linux/init.h>
#include <linux/irqchip/mips-gic.h>

#include <asm/cpu.h>
#include <asm/gic.h>
#include <asm/setup.h>
#include <asm/time.h>
#include <asm/irq.h>
Expand Down
2 changes: 1 addition & 1 deletion drivers/irqchip/irq-mips-gic.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
#include <linux/bitmap.h>
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/irqchip/mips-gic.h>
#include <linux/sched.h>
#include <linux/smp.h>
#include <linux/irq.h>
#include <linux/clocksource.h>

#include <asm/io.h>
#include <asm/gic.h>
#include <asm/setup.h>
#include <asm/traps.h>
#include <linux/hardirq.h>
Expand Down
File renamed without changes.

0 comments on commit 4060bbe

Please sign in to comment.