Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

MIPS: pic32: include linux/io.h header on several files

The pic32.h header includes linux/io.h, however nothing from that
include file is directly used by pic32.h. Several C files that
include pic32.h indirectly depend on linux/io.h, so let's go ahead
and add the missing include so that linux/io.h can be dropped from
pic32.h.

Signed-off-by: Brian Masney <bmasney@redhat.com>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>

authored by

Brian Masney and committed by
Thomas Bogendoerfer
4f82eef9 d463fc5c

+3
+1
arch/mips/pic32/common/reset.c
··· 4 4 * Copyright (C) 2015 Microchip Technology Inc. All rights reserved. 5 5 */ 6 6 #include <linux/init.h> 7 + #include <linux/io.h> 7 8 #include <linux/pm.h> 8 9 #include <asm/reboot.h> 9 10 #include <asm/mach-pic32/pic32.h>
+1
arch/mips/pic32/pic32mzda/early_clk.c
··· 3 3 * Joshua Henderson <joshua.henderson@microchip.com> 4 4 * Copyright (C) 2015 Microchip Technology Inc. All rights reserved. 5 5 */ 6 + #include <linux/io.h> 6 7 #include <asm/mach-pic32/pic32.h> 7 8 8 9 #include "pic32mzda.h"
+1
arch/mips/pic32/pic32mzda/early_console.c
··· 3 3 * Joshua Henderson <joshua.henderson@microchip.com> 4 4 * Copyright (C) 2015 Microchip Technology Inc. All rights reserved. 5 5 */ 6 + #include <linux/io.h> 6 7 #include <asm/mach-pic32/pic32.h> 7 8 #include <asm/fw/fw.h> 8 9 #include <asm/setup.h>