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.

mfd: intel_soc_pmic_bxtwc: 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://lore.kernel.org/r/20241016105201.757024-3-andriy.shevchenko@linux.intel.com
Signed-off-by: Lee Jones <lee@kernel.org>

authored by

Andy Shevchenko and committed by
Lee Jones
d2e77347 1f9e418a

+12 -1
+12 -1
drivers/mfd/intel_soc_pmic_bxtwc.c
··· 6 6 */ 7 7 8 8 #include <linux/acpi.h> 9 + #include <linux/array_size.h> 9 10 #include <linux/bits.h> 10 11 #include <linux/delay.h> 12 + #include <linux/device.h> 11 13 #include <linux/err.h> 14 + #include <linux/errno.h> 15 + #include <linux/gfp_types.h> 12 16 #include <linux/interrupt.h> 13 - #include <linux/kernel.h> 17 + #include <linux/ioport.h> 18 + #include <linux/kstrtox.h> 14 19 #include <linux/mfd/core.h> 15 20 #include <linux/mfd/intel_soc_pmic.h> 16 21 #include <linux/mfd/intel_soc_pmic_bxtwc.h> 22 + #include <linux/mod_devicetable.h> 17 23 #include <linux/module.h> 18 24 #include <linux/platform_data/x86/intel_scu_ipc.h> 25 + #include <linux/platform_device.h> 26 + #include <linux/pm.h> 27 + #include <linux/regmap.h> 28 + #include <linux/sysfs.h> 29 + #include <linux/types.h> 19 30 20 31 /* PMIC device registers */ 21 32 #define REG_ADDR_MASK GENMASK(15, 8)