Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 67ba3dad authored by Preetam Singh Ranawat's avatar Preetam Singh Ranawat Committed by Gerrit - the friendly Code Review server
Browse files

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: default avatarPreetam Singh Ranawat <apranawat@codeaurora.org>
parent 5a092dc8
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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)));

/**