diff options
| author | Vidyakumar Athota <vathota@codeaurora.org> | 2015-10-26 12:52:58 -0700 |
|---|---|---|
| committer | David Keitel <dkeitel@codeaurora.org> | 2016-03-23 20:11:02 -0700 |
| commit | 2e4fca555edf98f414b87a731709220e033de745 (patch) | |
| tree | db6efeb7c619ecace91b676f45d54db8e293ddaa /include | |
| parent | fef4c4cb854e5a841c88de7621a51fadf5ec0cb3 (diff) | |
ALSA: pcm: add support for 384KHz sample rate
Currenlty HW params fails to set 384KHz sample rate
due to unsupported sample rate. Change to add 384KHz
sample rate support to ALSA.
Change-Id: I381f7cdcc69e6cf9339cec53aab3fa295760c17c
Signed-off-by: Vidyakumar Athota <vathota@codeaurora.org>
Diffstat (limited to 'include')
| -rw-r--r-- | include/sound/pcm.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/sound/pcm.h b/include/sound/pcm.h index d27aed5c6f4e..6e98f4f08541 100644 --- a/include/sound/pcm.h +++ b/include/sound/pcm.h @@ -138,6 +138,7 @@ struct snd_pcm_ops { #define SNDRV_PCM_RATE_96000 (1<<10) /* 96000Hz */ #define SNDRV_PCM_RATE_176400 (1<<11) /* 176400Hz */ #define SNDRV_PCM_RATE_192000 (1<<12) /* 192000Hz */ +#define SNDRV_PCM_RATE_384000 (1<<13) /* 384000Hz */ #define SNDRV_PCM_RATE_CONTINUOUS (1<<30) /* continuous range */ #define SNDRV_PCM_RATE_KNOT (1<<31) /* supports more non-continuos rates */ |
