[PATCH v1 1/1] ASoC: SOF: Intel: Don't use "proxy" headers

From: Andy Shevchenko

Date: Fri Jul 17 2026 - 13:23:34 EST


Update header inclusions to follow IWYU (Include What You Use)
principle.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@xxxxxxxxxxxxxxx>
---

Induced by the ongoing task to drop always included kconfig.h.

sound/soc/sof/intel/icl.c | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/sound/soc/sof/intel/icl.c b/sound/soc/sof/intel/icl.c
index c1018893750c..549bb4ca73e1 100644
--- a/sound/soc/sof/intel/icl.c
+++ b/sound/soc/sof/intel/icl.c
@@ -9,10 +9,14 @@
* Hardware interface for audio DSP on IceLake.
*/

-#include <linux/kernel.h>
-#include <linux/kconfig.h>
-#include <linux/export.h>
+#include <linux/array_size.h>
#include <linux/bits.h>
+#include <linux/dev_printk.h>
+#include <linux/errno.h>
+#include <linux/slab.h>
+#include <linux/string.h>
+#include <linux/types.h>
+
#include "../ipc4-priv.h"
#include "../ops.h"
#include "hda.h"
--
2.50.1