regulator: rk808: add #include for gpiod functions
authorUwe Kleine-König <uwe@kleine-koenig.org>
Tue, 21 Jul 2015 14:46:24 +0000 (16:46 +0200)
committerMark Brown <broonie@kernel.org>
Tue, 21 Jul 2015 16:11:29 +0000 (17:11 +0100)
This fixes a build problem on mips found by the kbuild test robot:

drivers/regulator/rk808-regulator.c: In function 'rk808_buck1_2_get_voltage_sel_regmap':
drivers/regulator/rk808-regulator.c:97:2: error: implicit declaration of function 'gpiod_get_value' [-Werror=implicit-function-declaration]
  if (IS_ERR(gpio) || gpiod_get_value(gpio) == 0)
  ^

Fixes: bad47ad2eef3 ("regulator: rk808: fixed the overshoot when adjust voltage")
Signed-off-by: Uwe Kleine-König <uwe@kleine-koenig.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/regulator/rk808-regulator.c

index ca913fd15598e266caba6b826003868851a03c91..ac9436d2ea8d82386d89aadd6315404aad3fceaa 100644 (file)
@@ -25,6 +25,7 @@
 #include <linux/mfd/rk808.h>
 #include <linux/regulator/driver.h>
 #include <linux/regulator/of_regulator.h>
+#include <linux/gpio/consumer.h>
 
 /* Field Definitions */
 #define RK808_BUCK_VSEL_MASK   0x3f
This page took 0.026911 seconds and 5 git commands to generate.