diff options
| author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2025-06-26 18:43:54 +0300 |
|---|---|---|
| committer | Lee Jones <lee@kernel.org> | 2025-07-24 11:27:11 +0100 |
| commit | c371040f31ab63de992c7d811ffc4c7d450b46a5 (patch) | |
| tree | 790ca68b9bae770bc6d963baa0832a1b530c139a | |
| parent | e403cdf0704b7b1fedaf4ed5f05cc814dffbd6d5 (diff) | |
mfd: davinci_voicecodec: 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/20250626154354.324439-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Lee Jones <lee@kernel.org>
| -rw-r--r-- | include/linux/mfd/davinci_voicecodec.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/include/linux/mfd/davinci_voicecodec.h b/include/linux/mfd/davinci_voicecodec.h index 556375b91316..9acd703dd5ca 100644 --- a/include/linux/mfd/davinci_voicecodec.h +++ b/include/linux/mfd/davinci_voicecodec.h @@ -10,11 +10,13 @@ #ifndef __LINUX_MFD_DAVINCI_VOICECODEC_H_ #define __LINUX_MFD_DAVINCI_VOICECODEC_H_ -#include <linux/kernel.h> -#include <linux/platform_device.h> +#include <linux/bits.h> #include <linux/mfd/core.h> -#include <linux/platform_data/edma.h> +#include <linux/types.h> +struct clk; +struct device; +struct platform_device; struct regmap; /* |
