diff options
author | Steven Eckhoff <steven.eckhoff.opensource@gmail.com> | 2018-03-09 06:13:40 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2018-03-09 16:00:38 +0300 |
commit | 641eea3f8b95a47d5e5db28dd92a0f586cd85390 (patch) | |
tree | f07c2372a4fa341ef97902fd64a5cd5f56f4f627 | |
parent | 390f7bbdd7c8f812e22100248b0ed7ae1f68b8c9 (diff) | |
download | linux-641eea3f8b95a47d5e5db28dd92a0f586cd85390.tar.xz |
ASoC: TSCS42xx: Add missing headers
Add missing headers
Signed-off-by: Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/codecs/tscs42xx.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sound/soc/codecs/tscs42xx.c b/sound/soc/codecs/tscs42xx.c index e915261fa1cb..cfc71b5411ee 100644 --- a/sound/soc/codecs/tscs42xx.c +++ b/sound/soc/codecs/tscs42xx.c @@ -3,14 +3,19 @@ // Copyright 2017 Tempo Semiconductor, Inc. // Author: Steven Eckhoff <steven.eckhoff.opensource@gmail.com> +#include <linux/kernel.h> +#include <linux/device.h> +#include <linux/regmap.h> #include <linux/i2c.h> +#include <linux/err.h> +#include <linux/string.h> #include <linux/module.h> +#include <linux/delay.h> #include <linux/mutex.h> -#include <linux/regmap.h> +#include <sound/tlv.h> #include <sound/pcm_params.h> #include <sound/soc.h> #include <sound/soc-dapm.h> -#include <sound/tlv.h> #include "tscs42xx.h" |