diff options
author | Sriranjan Srikantam <c_ssrika@qualcomm.com> | 2009-08-04 01:03:51 +0530 |
---|---|---|
committer | Colbert, Varun <c_vcolbe@quicinc.com> | 2009-08-13 10:16:44 -0700 |
commit | 8e5094e9eb5cfbb1a17d34f1c785fd9df6f28c3f (patch) | |
tree | 268906612b9c378a9dde48ac018a676bb11147c7 | |
parent | e7b1a31aa3072e14adc5fe6df6510d3e594057a6 (diff) | |
download | bionic-8e5094e9eb5cfbb1a17d34f1c785fd9df6f28c3f.zip bionic-8e5094e9eb5cfbb1a17d34f1c785fd9df6f28c3f.tar.gz bionic-8e5094e9eb5cfbb1a17d34f1c785fd9df6f28c3f.tar.bz2 |
bionic: Add pcm width to msm audio config structure
Add pcm width variable to pcm config structure which is required for the
pcm decoder driver.
This corrs to kernel commit 284c865e265a9a86bd946f7b7fe686042a95512f
-rw-r--r-- | libc/kernel/common/linux/msm_audio.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/kernel/common/linux/msm_audio.h b/libc/kernel/common/linux/msm_audio.h index e431612..9bd0aee 100644 --- a/libc/kernel/common/linux/msm_audio.h +++ b/libc/kernel/common/linux/msm_audio.h @@ -105,6 +105,7 @@ struct msm_audio_config { uint32_t sample_rate; uint32_t type; uint32_t meta_field; + uint32_t bits; uint32_t unused[3]; }; |