diff options
author | Charles Keepax <ckeepax@opensource.cirrus.com> | 2024-01-29 18:25:53 +0300 |
---|---|---|
committer | Lee Jones <lee@kernel.org> | 2024-02-23 17:58:01 +0300 |
commit | 8b9a1f5ef43b8d26c4df3b4e3cbebec04d7be1c5 (patch) | |
tree | 63acef5268121bea71148ddc62f569e573f8b509 /drivers/mfd/cs42l43-sdw.c | |
parent | efe4c7908ec9d5959e87f088f0176c012b08a027 (diff) | |
download | linux-8b9a1f5ef43b8d26c4df3b4e3cbebec04d7be1c5.tar.xz |
mfd: cs42l43: Tidy up header includes
Use more forward declarations, move header guards to cover other
includes, and rely less on including headers through other headers.
Suggested-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Signed-off-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Link: https://lore.kernel.org/r/20240129152557.3221212-2-ckeepax@opensource.cirrus.com
Signed-off-by: Lee Jones <lee@kernel.org>
Diffstat (limited to 'drivers/mfd/cs42l43-sdw.c')
-rw-r--r-- | drivers/mfd/cs42l43-sdw.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/mfd/cs42l43-sdw.c b/drivers/mfd/cs42l43-sdw.c index 1d85bbf8cdd5..d6962a5a35f6 100644 --- a/drivers/mfd/cs42l43-sdw.c +++ b/drivers/mfd/cs42l43-sdw.c @@ -6,11 +6,15 @@ * Cirrus Logic International Semiconductor Ltd. */ +#include <linux/array_size.h> #include <linux/device.h> #include <linux/err.h> -#include <linux/errno.h> +#include <linux/mfd/cs42l43.h> #include <linux/mfd/cs42l43-regs.h> +#include <linux/mod_devicetable.h> #include <linux/module.h> +#include <linux/pm.h> +#include <linux/regmap.h> #include <linux/soundwire/sdw.h> #include <linux/soundwire/sdw_registers.h> #include <linux/soundwire/sdw_type.h> |