diff options
author | Dmitri Vorobiev <dmitri.vorobiev@gmail.com> | 2008-01-24 11:52:49 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2008-01-29 05:15:04 -0500 |
commit | 54bf038e2216212b1728861b1a15fc0cc1ad1d2e (patch) | |
tree | c7afae22fc14835a6d3167af83d6d44366463e66 /arch/mips/mips-boards/malta/malta_setup.c | |
parent | 1997267072d6bfadb37d336779e6122c2d44343d (diff) |
[MIPS] Malta: include <linux/cpu.h> instead of <asm/cpu.h>
The checkpatch.pl script reported a few warnings about header files.
This patch fixes these warnings.
Compile-tested using the default Malta config.
No functional changes introduced.
Signed-off-by: Dmitri Vorobiev <dmitri.vorobiev@gmail.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/mips-boards/malta/malta_setup.c')
-rw-r--r-- | arch/mips/mips-boards/malta/malta_setup.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/mips/mips-boards/malta/malta_setup.c b/arch/mips/mips-boards/malta/malta_setup.c index e5ac079e47e0..3e2de0b8e2cf 100644 --- a/arch/mips/mips-boards/malta/malta_setup.c +++ b/arch/mips/mips-boards/malta/malta_setup.c | |||
@@ -15,21 +15,21 @@ | |||
15 | * with this program; if not, write to the Free Software Foundation, Inc., | 15 | * with this program; if not, write to the Free Software Foundation, Inc., |
16 | * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA. | 16 | * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA. |
17 | */ | 17 | */ |
18 | #include <linux/cpu.h> | ||
18 | #include <linux/init.h> | 19 | #include <linux/init.h> |
19 | #include <linux/sched.h> | 20 | #include <linux/sched.h> |
20 | #include <linux/ioport.h> | 21 | #include <linux/ioport.h> |
22 | #include <linux/irq.h> | ||
21 | #include <linux/pci.h> | 23 | #include <linux/pci.h> |
22 | #include <linux/screen_info.h> | 24 | #include <linux/screen_info.h> |
25 | #include <linux/time.h> | ||
23 | 26 | ||
24 | #include <asm/cpu.h> | ||
25 | #include <asm/bootinfo.h> | 27 | #include <asm/bootinfo.h> |
26 | #include <asm/irq.h> | ||
27 | #include <asm/mips-boards/generic.h> | 28 | #include <asm/mips-boards/generic.h> |
28 | #include <asm/mips-boards/prom.h> | 29 | #include <asm/mips-boards/prom.h> |
29 | #include <asm/mips-boards/malta.h> | 30 | #include <asm/mips-boards/malta.h> |
30 | #include <asm/mips-boards/maltaint.h> | 31 | #include <asm/mips-boards/maltaint.h> |
31 | #include <asm/dma.h> | 32 | #include <asm/dma.h> |
32 | #include <asm/time.h> | ||
33 | #include <asm/traps.h> | 33 | #include <asm/traps.h> |
34 | #ifdef CONFIG_VT | 34 | #ifdef CONFIG_VT |
35 | #include <linux/console.h> | 35 | #include <linux/console.h> |