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

This commit is contained in:
Linux Build Service Account 2017-02-26 23:48:29 -08:00 committed by Gerrit - the friendly Code Review server
commit c3517cc8b2

View file

@ -70,7 +70,7 @@ struct snd_compr_tstamp {
__u32 pcm_frames; __u32 pcm_frames;
__u32 pcm_io_frames; __u32 pcm_io_frames;
__u32 sampling_rate; __u32 sampling_rate;
uint64_t timestamp; __u64 timestamp;
} __attribute__((packed, aligned(4))); } __attribute__((packed, aligned(4)));
/** /**
@ -128,8 +128,8 @@ struct snd_compr_codec_caps {
* @reserved: reserved for furture use * @reserved: reserved for furture use
*/ */
struct snd_compr_audio_info { struct snd_compr_audio_info {
uint32_t frame_size; __u32 frame_size;
uint32_t reserved[15]; __u32 reserved[15];
} __attribute__((packed, aligned(4))); } __attribute__((packed, aligned(4)));
/** /**