Merge "ALSA: compress: Replace usages of uint32/uint64 with u32/u64"
This commit is contained in:
commit
c3517cc8b2
1 changed files with 3 additions and 3 deletions
|
@ -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)));
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue