[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1465132260-6617-1-git-send-email-fabf@skynet.be>
Date: Sun, 5 Jun 2016 15:11:00 +0200
From: Fabian Frederick <fabf@...net.be>
To: Nicolin Chen <nicoleotsuka@...il.com>
Cc: alsa-devel@...a-project.org, linux-kernel@...r.kernel.org,
fabf@...net.be
Subject: [PATCH 1/1 linux-next] ASoC: cs53l30: include gpio/consumer.h
cs53l30 breaks kernel compilation when CONFIG_GPIOLIB is disabled.
sound/soc/codecs/cs53l30.c:931:2: error: implicit declaration of
function devm_gpiod_get_optional [-Werror=implicit-function-declaration]
cs53l30->reset_gpio = devm_gpiod_get_optional(dev, "reset",
^
sound/soc/codecs/cs53l30.c:932:13: error: GPIOD_OUT_LOW undeclared
(first use in this function)
Including gpio/consumer.h declares minimal functions in that case.
Signed-off-by: Fabian Frederick <fabf@...net.be>
---
sound/soc/codecs/cs53l30.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/sound/soc/codecs/cs53l30.c b/sound/soc/codecs/cs53l30.c
index ac90dd7..4818324 100644
--- a/sound/soc/codecs/cs53l30.c
+++ b/sound/soc/codecs/cs53l30.c
@@ -15,6 +15,7 @@
#include <linux/clk.h>
#include <linux/delay.h>
#include <linux/i2c.h>
+#include <linux/gpio/consumer.h>
#include <linux/module.h>
#include <linux/of_gpio.h>
#include <linux/regulator/consumer.h>
--
2.1.4
Powered by blists - more mailing lists