diff options
author | Mark Brown <broonie@kernel.org> | 2022-02-02 19:13:22 +0000 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2022-02-03 11:31:00 +0000 |
commit | ed482dc8c76db7613c08f39b09c6b98718c92940 (patch) | |
tree | 39bd951dd5090a333b66403dc1b073c4392a2795 /sound/soc | |
parent | b5083c0c948ac7f52ca700af219cb491735ecd4b (diff) | |
download | linux-ed482dc8c76db7613c08f39b09c6b98718c92940.tar.bz2 |
ASoC: samsung: Explicitly include gpiolib header
midas_wm811 uses gpiolib but relies on the header being implicitly included
which can lead to build failures in some configurations, explicitly pull
the header in to avoid problems.
Signed-off-by: Mark Brown <broonie@kernel.org>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
Link: https://lore.kernel.org/r/20220202191322.3650708-1-broonie@kernel.org
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc')
-rw-r--r-- | sound/soc/samsung/midas_wm1811.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/samsung/midas_wm1811.c b/sound/soc/samsung/midas_wm1811.c index a2019535a0b1..5e9dc18687cc 100644 --- a/sound/soc/samsung/midas_wm1811.c +++ b/sound/soc/samsung/midas_wm1811.c @@ -6,6 +6,7 @@ // Copyright (C) 2020 Samsung Electronics Co., Ltd. #include <linux/clk.h> +#include <linux/gpio/consumer.h> #include <linux/mfd/wm8994/registers.h> #include <linux/module.h> #include <linux/of.h> |