Skip to content

Commit

Permalink
Merge remote-tracking branch 'asoc/topic/rockchip' into asoc-next
Browse files Browse the repository at this point in the history
  • Loading branch information
broonie committed Jan 18, 2018
2 parents 078b3a0 + db51707 commit e2ab6dd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions sound/soc/rockchip/rockchip_i2s.c
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,7 @@ static int rockchip_i2s_hw_params(struct snd_pcm_substream *substream,
val |= I2S_CHN_4;
break;
case 2:
case 1:
val |= I2S_CHN_2;
break;
default:
Expand Down Expand Up @@ -460,7 +461,7 @@ static struct snd_soc_dai_driver rockchip_i2s_dai = {
},
.capture = {
.stream_name = "Capture",
.channels_min = 2,
.channels_min = 1,
.channels_max = 2,
.rates = SNDRV_PCM_RATE_8000_192000,
.formats = (SNDRV_PCM_FMTBIT_S8 |
Expand Down Expand Up @@ -660,7 +661,7 @@ static int rockchip_i2s_probe(struct platform_device *pdev)
}

if (!of_property_read_u32(node, "rockchip,capture-channels", &val)) {
if (val >= 2 && val <= 8)
if (val >= 1 && val <= 8)
soc_dai->capture.channels_max = val;
}

Expand Down

0 comments on commit e2ab6dd

Please sign in to comment.