Skip to content

Commit

Permalink
ASoC: hdmi-codec: Add SNDRV_PCM_FMTBIT_32_LE playback format
Browse files Browse the repository at this point in the history
The new playback format is needed for tda998x HDMI audio support. At
the moment the only other user of this codec is omap-hdmi-audio. This
change should not break anything because omap-hdmi-audio-dai, the
cpu-dai of omap-hdmi-audio, enforces sufficient constraints to
available sample formats.

Signed-off-by: Jyri Sarha <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
  • Loading branch information
Jyri Sarha authored and broonie committed Nov 24, 2013
1 parent 6ce4eac commit c600e95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/soc/codecs/hdmi.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ static struct snd_soc_dai_driver hdmi_codec_dai = {
SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000 |
SNDRV_PCM_RATE_176400 | SNDRV_PCM_RATE_192000,
.formats = SNDRV_PCM_FMTBIT_S16_LE |
SNDRV_PCM_FMTBIT_S24_LE,
SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S32_LE,
},
.capture = {
.stream_name = "Capture",
Expand Down

0 comments on commit c600e95

Please sign in to comment.