summaryrefslogtreecommitdiff
path: root/drivers/mfd/cs42l43.h
diff options
context:
space:
mode:
authorCharles Keepax <ckeepax@opensource.cirrus.com>2024-01-29 18:25:53 +0300
committerLee Jones <lee@kernel.org>2024-02-23 17:58:01 +0300
commit8b9a1f5ef43b8d26c4df3b4e3cbebec04d7be1c5 (patch)
tree63acef5268121bea71148ddc62f569e573f8b509 /drivers/mfd/cs42l43.h
parentefe4c7908ec9d5959e87f088f0176c012b08a027 (diff)
downloadlinux-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.h')
-rw-r--r--drivers/mfd/cs42l43.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/drivers/mfd/cs42l43.h b/drivers/mfd/cs42l43.h
index eb4caf393833..8d1b1b0f5a47 100644
--- a/drivers/mfd/cs42l43.h
+++ b/drivers/mfd/cs42l43.h
@@ -6,15 +6,17 @@
* Cirrus Logic International Semiconductor Ltd.
*/
-#include <linux/mfd/cs42l43.h>
-#include <linux/pm.h>
-#include <linux/regmap.h>
-
#ifndef CS42L43_CORE_INT_H
#define CS42L43_CORE_INT_H
#define CS42L43_N_DEFAULTS 176
+struct dev_pm_ops;
+struct device;
+struct reg_default;
+
+struct cs42l43;
+
extern const struct dev_pm_ops cs42l43_pm_ops;
extern const struct reg_default cs42l43_reg_default[CS42L43_N_DEFAULTS];