diff options
author | Andrew F. Davis <afd@ti.com> | 2017-12-07 18:38:51 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-12-07 20:47:17 +0300 |
commit | 283c35062f778fc40f8eb5dc004ca37a7208ea66 (patch) | |
tree | d687bd3c58b29dbf477c27a1d73a8d843d1517c8 /sound/soc/codecs/tlv320aic31xx.c | |
parent | dcb407b257af06fa58b0544ec01ec9e0d3927e02 (diff) | |
download | linux-283c35062f778fc40f8eb5dc004ca37a7208ea66.tar.xz |
ASoC: tlv320aic31xx: Fix GPIO header includes
Use of gpiod_* needs <linux/gpio/consumer.h>, add this here.
Fixes: b6b247cd5e37 ("ASoC: tlv320aic31xx: Switch GPIO handling to use gpiod_* API")
Signed-off-by: Andrew F. Davis <afd@ti.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/tlv320aic31xx.c')
-rw-r--r-- | sound/soc/codecs/tlv320aic31xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/tlv320aic31xx.c b/sound/soc/codecs/tlv320aic31xx.c index 38fd6ea275fb..13471a900085 100644 --- a/sound/soc/codecs/tlv320aic31xx.c +++ b/sound/soc/codecs/tlv320aic31xx.c @@ -18,7 +18,7 @@ #include <linux/delay.h> #include <linux/pm.h> #include <linux/i2c.h> -#include <linux/gpio.h> +#include <linux/gpio/consumer.h> #include <linux/regulator/consumer.h> #include <linux/acpi.h> #include <linux/of.h> |