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 11:27:15 +0100 |
| commit | b9ec71fbd572042770df16c9b65bbf91cbd556cf (patch) | |
| tree | 3c721ec06b57027f0c5610b88bdf4234bebb2ce3 /drivers/mfd | |
| parent | dd394515d18aedd379e8dc886cb8286e1714f735 (diff) | |
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 'drivers/mfd')
| -rw-r--r-- | drivers/mfd/atmel-smc.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/drivers/mfd/atmel-smc.c b/drivers/mfd/atmel-smc.c index 4628ca14e766..0a5b42c83f17 100644 --- a/drivers/mfd/atmel-smc.c +++ b/drivers/mfd/atmel-smc.c @@ -8,9 +8,16 @@ * Author: Boris Brezillon <boris.brezillon@free-electrons.com> */ -#include <linux/mfd/syscon/atmel-smc.h> +#include <linux/bits.h> +#include <linux/err.h> +#include <linux/export.h> +#include <linux/mod_devicetable.h> +#include <linux/of.h> +#include <linux/regmap.h> #include <linux/string.h> +#include <linux/mfd/syscon/atmel-smc.h> + /** * atmel_smc_cs_conf_init - initialize a SMC CS conf * @conf: the SMC CS conf to initialize |
