projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
74b24c3
)
ASoC: wm8955: Convert to params_width()
author
Mark Brown
<
[email protected]
>
Thu, 31 Jul 2014 11:53:16 +0000
(12:53 +0100)
committer
Mark Brown
<
[email protected]
>
Thu, 31 Jul 2014 17:47:39 +0000
(18:47 +0100)
The CODEC doesn't care how data is laid out in memory.
Signed-off-by: Mark Brown <
[email protected]
>
Acked-by: Charles Keepax <
[email protected]
>
sound/soc/codecs/wm8955.c
patch
|
blob
|
history
diff --git
a/sound/soc/codecs/wm8955.c
b/sound/soc/codecs/wm8955.c
index 2a35108f233dee347317b23c925fc0c50f799976..09d91d9dc4ee841526f7594dc2afb642c800957d 100644
(file)
--- a/
sound/soc/codecs/wm8955.c
+++ b/
sound/soc/codecs/wm8955.c
@@
-597,17
+597,17
@@
static int wm8955_hw_params(struct snd_pcm_substream *substream,
int ret;
int wl;
- switch (params_
format
(params)) {
- case
SNDRV_PCM_FORMAT_S16_LE
:
+ switch (params_
width
(params)) {
+ case
16
:
wl = 0;
break;
- case
SNDRV_PCM_FORMAT_S20_3LE
:
+ case
20
:
wl = 0x4;
break;
- case
SNDRV_PCM_FORMAT_S24_LE
:
+ case
24
:
wl = 0x8;
break;
- case
SNDRV_PCM_FORMAT_S32_LE
:
+ case
32
:
wl = 0xc;
break;
default: