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

Commit c3517cc8 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "ALSA: compress: Replace usages of uint32/uint64 with u32/u64"

parents 01e12e2d 67ba3dad
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)));

/**