Commit b5d8dffb authored by Peter Ujfalusi's avatar Peter Ujfalusi Committed by Mark Brown

ASoC: pcm3168a: Rename min_frame_size to slot_width

It represents slot size and not frame.
Signed-off-by: default avatarPeter Ujfalusi <peter.ujfalusi@ti.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent fd14f443
...@@ -435,7 +435,7 @@ static int pcm3168a_hw_params(struct snd_pcm_substream *substream, ...@@ -435,7 +435,7 @@ static int pcm3168a_hw_params(struct snd_pcm_substream *substream,
u32 val, mask, shift, reg; u32 val, mask, shift, reg;
unsigned int rate, fmt, ratio, max_ratio; unsigned int rate, fmt, ratio, max_ratio;
unsigned int chan; unsigned int chan;
int i, min_frame_size; int i, slot_width;
rate = params_rate(params); rate = params_rate(params);
chan = params_channels(params); chan = params_channels(params);
...@@ -470,11 +470,11 @@ static int pcm3168a_hw_params(struct snd_pcm_substream *substream, ...@@ -470,11 +470,11 @@ static int pcm3168a_hw_params(struct snd_pcm_substream *substream,
} }
if (pcm3168a->slot_width) if (pcm3168a->slot_width)
min_frame_size = pcm3168a->slot_width; slot_width = pcm3168a->slot_width;
else else
min_frame_size = params_width(params); slot_width = params_width(params);
switch (min_frame_size) { switch (slot_width) {
case 16: case 16:
if (master_mode || (fmt != PCM3168A_FMT_RIGHT_J)) { if (master_mode || (fmt != PCM3168A_FMT_RIGHT_J)) {
dev_err(component->dev, "16-bit slots are supported only for slave mode using right justified\n"); dev_err(component->dev, "16-bit slots are supported only for slave mode using right justified\n");
...@@ -491,7 +491,7 @@ static int pcm3168a_hw_params(struct snd_pcm_substream *substream, ...@@ -491,7 +491,7 @@ static int pcm3168a_hw_params(struct snd_pcm_substream *substream,
case 32: case 32:
break; break;
default: default:
dev_err(component->dev, "unsupported frame size: %d\n", min_frame_size); dev_err(component->dev, "unsupported frame size: %d\n", slot_width);
return -EINVAL; return -EINVAL;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment