diff options
| author | Brian Masney <bmasney@redhat.com> | 2026-01-12 17:47:56 -0500 |
|---|---|---|
| committer | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 2026-01-30 15:29:07 +0100 |
| commit | 18635a70801cdd5635c7a82e0acb4c5075f74a91 (patch) | |
| tree | 6b7079e4723db9b34cafbbb10c1aa50dad5f8467 | |
| parent | 4f82eef99abf7a1c1e718303b24bdb8b490e5a26 (diff) | |
MIPS: pic32: include linux/types.h on pic32.h
The pic32.h header file currently includes linux/io.h, however that
header is not actually used. The only header that's needed by this
C file is linux/types.h. Let's include it so that linux/io.h can be
dropped.
Signed-off-by: Brian Masney <bmasney@redhat.com>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
| -rw-r--r-- | arch/mips/include/asm/mach-pic32/pic32.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/include/asm/mach-pic32/pic32.h b/arch/mips/include/asm/mach-pic32/pic32.h index 53918a671a4c..e71c92a7bfde 100644 --- a/arch/mips/include/asm/mach-pic32/pic32.h +++ b/arch/mips/include/asm/mach-pic32/pic32.h @@ -7,6 +7,7 @@ #define _ASM_MACH_PIC32_H #include <linux/io.h> +#include <linux/types.h> /* * PIC32 register offsets for SET/CLR/INV where supported. |
