diff options
| author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2025-06-27 19:43:58 +0300 |
|---|---|---|
| committer | Lee Jones <lee@kernel.org> | 2025-07-24 13:27:15 +0300 |
| commit | b9ec71fbd572042770df16c9b65bbf91cbd556cf (patch) | |
| tree | 3c721ec06b57027f0c5610b88bdf4234bebb2ce3 /include/linux/mfd/syscon | |
| parent | dd394515d18aedd379e8dc886cb8286e1714f735 (diff) | |
| download | linux-b9ec71fbd572042770df16c9b65bbf91cbd556cf.tar.xz | |
mfd: syscon: atmel-smc: 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>
Link: https://lore.kernel.org/r/20250627164414.1043434-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Lee Jones <lee@kernel.org>
Diffstat (limited to 'include/linux/mfd/syscon')
| -rw-r--r-- | include/linux/mfd/syscon/atmel-smc.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/linux/mfd/syscon/atmel-smc.h b/include/linux/mfd/syscon/atmel-smc.h index e9e24f4c4578..9b9119c742a2 100644 --- a/include/linux/mfd/syscon/atmel-smc.h +++ b/include/linux/mfd/syscon/atmel-smc.h @@ -11,9 +11,11 @@ #ifndef _LINUX_MFD_SYSCON_ATMEL_SMC_H_ #define _LINUX_MFD_SYSCON_ATMEL_SMC_H_ -#include <linux/kernel.h> -#include <linux/of.h> -#include <linux/regmap.h> +#include <linux/bits.h> +#include <linux/types.h> + +struct device_node; +struct regmap; #define ATMEL_SMC_SETUP(cs) (((cs) * 0x10)) #define ATMEL_HSMC_SETUP(layout, cs) \ |
