diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2024-10-31 12:27:25 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2024-12-02 00:30:37 +0000 |
commit | 509544d1b6dbffe7bc1849593ff217f965ec0419 (patch) | |
tree | 81686df987408ba69ed5ada17e96c8423027ec42 /sound | |
parent | 01981565c764c554cc96e2d30a71c42975171416 (diff) |
ASoc: mediatek: mt8365: Don't use "proxy" headers
Update header inclusions to follow IWYU (Include What You Use)
principle.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://patch.msgid.link/20241031102725.2447711-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/mediatek/mt8365/mt8365-mt6357.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/sound/soc/mediatek/mt8365/mt8365-mt6357.c b/sound/soc/mediatek/mt8365/mt8365-mt6357.c index d398e83ea052..9f28d6bf0323 100644 --- a/sound/soc/mediatek/mt8365/mt8365-mt6357.c +++ b/sound/soc/mediatek/mt8365/mt8365-mt6357.c @@ -6,12 +6,19 @@ * Authors: Nicolas Belin <nbelin@baylibre.com> */ +#include <linux/array_size.h> +#include <linux/dev_printk.h> +#include <linux/err.h> +#include <linux/mod_devicetable.h> #include <linux/module.h> -#include <linux/of_gpio.h> +#include <linux/pinctrl/consumer.h> +#include <linux/platform_device.h> +#include <linux/types.h> + #include <sound/soc.h> #include <sound/pcm_params.h> + #include "mt8365-afe-common.h" -#include <linux/pinctrl/consumer.h> #include "../common/mtk-soc-card.h" #include "../common/mtk-soundcard-driver.h" |