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

mfd: simple-mfd-i2c: Don't use "proxy" headers

Update header inclusions to follow IWYU (Include What You Use) principle.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://patch.msgid.link/20251111111930.796837-3-andriy.shevchenko@linux.intel.com
Signed-off-by: Lee Jones <lee@kernel.org>

authored by

Andy Shevchenko and committed by
Lee Jones
46bddb5f 81d2cc92

+7 -1
+7 -1
drivers/mfd/simple-mfd-i2c.c
··· 15 15 * will be subsequently registered. 16 16 */ 17 17 18 + #include <linux/array_size.h> 19 + #include <linux/dev_printk.h> 20 + #include <linux/err.h> 18 21 #include <linux/i2c.h> 19 - #include <linux/kernel.h> 20 22 #include <linux/mfd/core.h> 23 + #include <linux/mod_devicetable.h> 21 24 #include <linux/module.h> 22 25 #include <linux/of_platform.h> 26 + #include <linux/platform_device.h> 27 + #include <linux/property.h> 23 28 #include <linux/regmap.h> 29 + #include <linux/stddef.h> 24 30 25 31 #include "simple-mfd-i2c.h" 26 32