Skip to content

Commit

Permalink
sound: codec: gtm601: the BM818 uses stereo channels
Browse files Browse the repository at this point in the history
Signed-off-by: Angus Ainslie (Purism) <angus@akkea.ca>
  • Loading branch information
nytowl authored and merge committed Jan 25, 2021
1 parent fceab61 commit d046015
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions sound/soc/codecs/gtm601.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ static struct snd_soc_dai_driver gtm601_dai = {
.name = "gtm601",
.playback = {
.stream_name = "Playback",
.channels_min = 1,
.channels_max = 1,
.channels_min = 2,
.channels_max = 2,
.rates = SNDRV_PCM_RATE_48000,
.formats = SNDRV_PCM_FMTBIT_S16_LE,
},
.capture = {
.stream_name = "Capture",
.channels_min = 1,
.channels_max = 1,
.channels_min = 2,
.channels_max = 2,
.rates = SNDRV_PCM_RATE_48000,
.formats = SNDRV_PCM_FMTBIT_S16_LE,
},
Expand Down

0 comments on commit d046015

Please sign in to comment.