]> Gentwo Git Trees - linux/.git/commitdiff
mfd: simple-mfd-i2c: Don't use "proxy" headers
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Tue, 11 Nov 2025 11:18:36 +0000 (12:18 +0100)
committerLee Jones <lee@kernel.org>
Wed, 19 Nov 2025 16:05:16 +0000 (16:05 +0000)
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>
drivers/mfd/simple-mfd-i2c.c

index 5fd0ef3fa44a42bc49a5394258a6818eb9b4e79a..8b751d8e3b5ae4df74874d2c581ee48184bfb7d9 100644 (file)
  * will be subsequently registered.
  */
 
+#include <linux/array_size.h>
+#include <linux/dev_printk.h>
+#include <linux/err.h>
 #include <linux/i2c.h>
-#include <linux/kernel.h>
 #include <linux/mfd/core.h>
+#include <linux/mod_devicetable.h>
 #include <linux/module.h>
 #include <linux/of_platform.h>
+#include <linux/platform_device.h>
+#include <linux/property.h>
 #include <linux/regmap.h>
+#include <linux/stddef.h>
 
 #include "simple-mfd-i2c.h"