From 67ba3dade5daad8e70448127f3ad252b5a38e023 Mon Sep 17 00:00:00 2001 From: Preetam Singh Ranawat Date: Mon, 20 Feb 2017 17:24:33 +0530 Subject: [PATCH] ALSA: compress: Replace usages of uint32/uint64 with u32/u64 Use u64/u32 instead of uint32/uint64 to avoid build failures. Change-Id: I070b025fcad30d06295e9030fe314e66e0e128de CRs-Fixed: 2004642 Signed-off-by: Preetam Singh Ranawat --- include/uapi/sound/compress_offload.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/uapi/sound/compress_offload.h b/include/uapi/sound/compress_offload.h index e04ccf0b6e8b..e050bc758b3b 100644 --- a/include/uapi/sound/compress_offload.h +++ b/include/uapi/sound/compress_offload.h @@ -70,7 +70,7 @@ struct snd_compr_tstamp { __u32 pcm_frames; __u32 pcm_io_frames; __u32 sampling_rate; - uint64_t timestamp; + __u64 timestamp; } __attribute__((packed, aligned(4))); /** @@ -128,8 +128,8 @@ struct snd_compr_codec_caps { * @reserved: reserved for furture use */ struct snd_compr_audio_info { - uint32_t frame_size; - uint32_t reserved[15]; + __u32 frame_size; + __u32 reserved[15]; } __attribute__((packed, aligned(4))); /**