Skip to content

Commit

Permalink
ASoC: sti-sas: add missing return in messages strings
Browse files Browse the repository at this point in the history
Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen@st.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
  • Loading branch information
Arnaud Pouliquen authored and Mark Brown committed Oct 26, 2016
1 parent 165a57a commit 92591ef
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions sound/soc/codecs/sti-sas.c
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ static int sti_sas_init_sas_registers(struct snd_soc_codec *codec,
ret = snd_soc_update_bits(codec, STIH407_AUDIO_GLUE_CTRL,
SPDIF_BIPHASE_IDLE_MASK, 0);
if (ret < 0) {
dev_err(codec->dev, "Failed to update SPDIF registers");
dev_err(codec->dev, "Failed to update SPDIF registers\n");
return ret;
}

Expand All @@ -144,7 +144,7 @@ static int sti_sas_init_sas_registers(struct snd_soc_codec *codec,
STIH407_DAC_SOFTMUTE_MASK);

if (ret < 0) {
dev_err(codec->dev, "Failed to update DAC registers");
dev_err(codec->dev, "Failed to update DAC registers\n");
return ret;
}

Expand Down Expand Up @@ -292,13 +292,13 @@ static int sti_sas_prepare(struct snd_pcm_substream *substream,
switch (dai->id) {
case STI_SAS_DAI_SPDIF_OUT:
if ((drvdata->spdif.mclk / runtime->rate) != 128) {
dev_err(codec->dev, "unexpected mclk-fs ratio");
dev_err(codec->dev, "unexpected mclk-fs ratio\n");
return -EINVAL;
}
break;
case STI_SAS_DAI_ANALOG_OUT:
if ((drvdata->dac.mclk / runtime->rate) != 256) {
dev_err(codec->dev, "unexpected mclk-fs ratio");
dev_err(codec->dev, "unexpected mclk-fs ratio\n");
return -EINVAL;
}
break;
Expand Down Expand Up @@ -423,7 +423,7 @@ static int sti_sas_driver_probe(struct platform_device *pdev)
/* Populate data structure depending on compatibility */
of_id = of_match_node(sti_sas_dev_match, pnode);
if (!of_id->data) {
dev_err(&pdev->dev, "data associated to device is missing");
dev_err(&pdev->dev, "data associated to device is missing\n");
return -EINVAL;
}

Expand Down

0 comments on commit 92591ef

Please sign in to comment.