diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2019-10-15 14:44:09 +0900 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-10-15 10:13:11 +0100 |
commit | 03048217624a9472c1c7a205c8ea9bf8d4026e59 (patch) | |
tree | dc8dbd6dec01e06e3c26dc4250d7d4f4aed8701d /include/sound | |
parent | 848704f39ff61f3f618975a76d6379f2848359a8 (diff) | |
download | linux-03048217624a9472c1c7a205c8ea9bf8d4026e59.tar.bz2 |
ASoC: sof: include types.h at header.h
Content-Transfer-Encoding: 8bit
Without <types.h> we will get these error
linux/include/sound/sof/header.h:125:2: error: unknown type name ‘uint32_t’uint32_t size;
linux/include/sound/sof/header.h:136:2: error: unknown type name ‘uint32_t’uint32_t size;
linux/include/sound/sof/header.h:137:2: error: unknown type name ‘uint32_t’uint32_t cmd;
...
linux/include/sound/sof/dai-imx.h:18:2: error: unknown type name ‘uint16_t’uint16_t reserved1;
linux/include/sound/sof/dai-imx.h:30:2: error: unknown type name ‘uint16_t’uint16_t tdm_slot_width;
linux/include/sound/sof/dai-imx.h:31:2: error: unknown type name ‘uint16_t’uint16_t reserved2;
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Link: https://lore.kernel.org/r/87a7a24l7r.wl-kuninori.morimoto.gx@renesas.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'include/sound')
-rw-r--r-- | include/sound/sof/header.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/sound/sof/header.h b/include/sound/sof/header.h index 10f00c08dbb7..332143ff7278 100644 --- a/include/sound/sof/header.h +++ b/include/sound/sof/header.h @@ -9,6 +9,7 @@ #ifndef __INCLUDE_SOUND_SOF_HEADER_H__ #define __INCLUDE_SOUND_SOF_HEADER_H__ +#include <linux/types.h> #include <uapi/sound/sof/abi.h> /** \addtogroup sof_uapi uAPI |