Include gpio/consumer.h to avoid the following build errors if GPIOLIB
is not configured.

drivers/regulator/rk808-regulator.c:97:2: error:
        implicit declaration of function 'gpiod_get_value'
drivers/regulator/rk808-regulator.c:194:2: error:
        implicit declaration of function 'gpiod_set_value'
drivers/regulator/rk808-regulator.c:543:3: error:
        implicit declaration of function 'gpiod_get_index'
drivers/regulator/rk808-regulator.c:543:62: error: 'GPIOD_ASIS' undeclared
drivers/regulator/rk808-regulator.c:549:3: error:
        implicit declaration of function 'gpiod_direction_output'
drivers/regulator/rk808-regulator.c:553:5: error:
        implicit declaration of function 'gpiod_is_active_low'
drivers/regulator/rk808-regulator.c:569:4: error:
                implicit declaration of function 'gpiod_put'

Fixes: bad47ad2eef3 ("regulator: rk808: fixed the overshoot when adjust
        voltage")
Cc: Chris Zhong <[email protected]>
Signed-off-by: Guenter Roeck <[email protected]>
---
 drivers/regulator/rk808-regulator.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/regulator/rk808-regulator.c 
b/drivers/regulator/rk808-regulator.c
index cfec52c1a4a2..2dd4e7df2ae4 100644
--- a/drivers/regulator/rk808-regulator.c
+++ b/drivers/regulator/rk808-regulator.c
@@ -18,6 +18,7 @@
 
 #include <linux/delay.h>
 #include <linux/gpio.h>
+#include <linux/gpio/consumer.h>
 #include <linux/i2c.h>
 #include <linux/module.h>
 #include <linux/of_device.h>
-- 
2.1.0

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to