diff options
author | Andrew Bresticker <abrestic@chromium.org> | 2014-10-20 15:03:55 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2014-11-24 01:45:14 -0500 |
commit | fb8f7be1299f4b0d86d65e0eada6c9962061c912 (patch) | |
tree | 8ad5fe86360443aa7e3c0aba4ed11f2c77429f2c /drivers/irqchip | |
parent | 824f3f7fa2b441416e3d9aaf1f19feab7db44747 (diff) |
irqchip: mips-gic: Clean up #includes
Sort the #includes and remove those which are unnecessary.
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/8130/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'drivers/irqchip')
-rw-r--r-- | drivers/irqchip/irq-mips-gic.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/irqchip/irq-mips-gic.c b/drivers/irqchip/irq-mips-gic.c index eaebeea36d23..9d7b1db791e4 100644 --- a/drivers/irqchip/irq-mips-gic.c +++ b/drivers/irqchip/irq-mips-gic.c | |||
@@ -7,19 +7,16 @@ | |||
7 | * Copyright (C) 2012 MIPS Technologies, Inc. All rights reserved. | 7 | * Copyright (C) 2012 MIPS Technologies, Inc. All rights reserved. |
8 | */ | 8 | */ |
9 | #include <linux/bitmap.h> | 9 | #include <linux/bitmap.h> |
10 | #include <linux/clocksource.h> | ||
10 | #include <linux/init.h> | 11 | #include <linux/init.h> |
11 | #include <linux/interrupt.h> | 12 | #include <linux/interrupt.h> |
13 | #include <linux/irq.h> | ||
12 | #include <linux/irqchip/mips-gic.h> | 14 | #include <linux/irqchip/mips-gic.h> |
13 | #include <linux/sched.h> | 15 | #include <linux/sched.h> |
14 | #include <linux/smp.h> | 16 | #include <linux/smp.h> |
15 | #include <linux/irq.h> | ||
16 | #include <linux/clocksource.h> | ||
17 | 17 | ||
18 | #include <asm/io.h> | ||
19 | #include <asm/setup.h> | 18 | #include <asm/setup.h> |
20 | #include <asm/traps.h> | 19 | #include <asm/traps.h> |
21 | #include <linux/hardirq.h> | ||
22 | #include <asm-generic/bitops/find.h> | ||
23 | 20 | ||
24 | unsigned int gic_frequency; | 21 | unsigned int gic_frequency; |
25 | unsigned int gic_present; | 22 | unsigned int gic_present; |