[alsa-devel] [PATCH] ASoC: ak4118: fix missing header
This driver use the gpio consumer interface. Add the header as it's needed.
Signed-off-by: Clément Péron peron.clem@gmail.com ---
This has been triggered by Kbuild-all for information: https://lists.01.org/pipermail/kbuild-all/2019-February/057379.html
sound/soc/codecs/ak4118.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/sound/soc/codecs/ak4118.c b/sound/soc/codecs/ak4118.c index 238ab29f2bf4..ce419e8cf890 100644 --- a/sound/soc/codecs/ak4118.c +++ b/sound/soc/codecs/ak4118.c @@ -6,6 +6,7 @@ */
#include <linux/i2c.h> +#include <linux/gpio/consumer.h> #include <linux/module.h> #include <linux/of_device.h> #include <linux/of_gpio.h>
The patch
ASoC: ak4118: fix missing header
has been applied to the asoc tree at
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Linus during the next merge window (or sooner if it is a bug fix), however if problems are discovered then the patch may be dropped or reverted.
You may get further e-mails resulting from automated or manual testing and review of the tree, please engage with people reporting problems and send followup patches addressing any issues that are reported if needed.
If any updates are required or you are submitting further changes they should be sent as incremental updates against current git, existing patches will not be replaced.
Please add any relevant lists and maintainers to the CCs when replying to this mail.
Thanks, Mark
From 0f747bb273790f49be4660521d86d7cebd1bbe1e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Cl=C3=A9ment=20P=C3=A9ron?= peron.clem@gmail.com Date: Mon, 4 Feb 2019 16:35:38 +0100 Subject: [PATCH] ASoC: ak4118: fix missing header MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit
This driver use the gpio consumer interface. Add the header as it's needed.
Signed-off-by: Clément Péron peron.clem@gmail.com Signed-off-by: Mark Brown broonie@kernel.org --- sound/soc/codecs/ak4118.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/sound/soc/codecs/ak4118.c b/sound/soc/codecs/ak4118.c index 238ab29f2bf4..ce419e8cf890 100644 --- a/sound/soc/codecs/ak4118.c +++ b/sound/soc/codecs/ak4118.c @@ -6,6 +6,7 @@ */
#include <linux/i2c.h> +#include <linux/gpio/consumer.h> #include <linux/module.h> #include <linux/of_device.h> #include <linux/of_gpio.h>
participants (2)
-
Clément Péron
-
Mark Brown