diff options
author | 2025-06-26 19:08:12 +0300 | |
---|---|---|
committer | 2025-07-28 12:08:21 +0200 | |
commit | 56eb7c13b97c6f9e2fed9e9899b01d1a6a595f28 (patch) | |
tree | e17276f419a6f69eef1e084d5579cb2f44e14dd4 | |
parent | mtd: fix possible integer overflow in erase_xfer() (diff) | |
download | wireguard-linux-56eb7c13b97c6f9e2fed9e9899b01d1a6a595f28.tar.xz wireguard-linux-56eb7c13b97c6f9e2fed9e9899b01d1a6a595f28.zip |
mtd: map: Don't use "proxy" headers
Update header inclusions to follow IWYU (Include What You Use)
principle.
Note that kernel.h is discouraged to be included as it's written
at the top of that file.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
-rw-r--r-- | include/linux/mtd/map.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/include/linux/mtd/map.h b/include/linux/mtd/map.h index 1b56796f6cb3..288ef765a44e 100644 --- a/include/linux/mtd/map.h +++ b/include/linux/mtd/map.h @@ -8,15 +8,15 @@ #ifndef __LINUX_MTD_MAP_H__ #define __LINUX_MTD_MAP_H__ -#include <linux/types.h> -#include <linux/list.h> -#include <linux/string.h> #include <linux/bug.h> -#include <linux/kernel.h> #include <linux/io.h> - +#include <linux/ioport.h> +#include <linux/string.h> +#include <linux/types.h> #include <linux/unaligned.h> -#include <asm/barrier.h> + +struct device_node; +struct module; #ifdef CONFIG_MTD_MAP_BANK_WIDTH_1 #define map_bankwidth(map) 1 @@ -188,6 +188,7 @@ typedef union { of living. */ +struct mtd_chip_driver; struct map_info { const char *name; unsigned long size; |