summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorLinux Build Service Account <lnxbuild@localhost>2017-02-26 23:48:29 -0800
committerGerrit - the friendly Code Review server <code-review@localhost>2017-02-26 23:48:28 -0800
commitc3517cc8b2e8ddf066fc09c3fbf6dc2b1be353a9 (patch)
tree3ea4da5d6f82d5924f220235d465f0fe1362b6be /include
parent01e12e2df28abb6d6399171a3aea163791a8dadd (diff)
parent67ba3dade5daad8e70448127f3ad252b5a38e023 (diff)
Merge "ALSA: compress: Replace usages of uint32/uint64 with u32/u64"
Diffstat (limited to 'include')
-rw-r--r--include/uapi/sound/compress_offload.h6
1 files 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)));
/**