Skip to content

Commit

Permalink
ASoC: max98357a: Do not print error message on asoc/gpio errors
Browse files Browse the repository at this point in the history
gpiolib/asoc system already prints enough info if there are any problems.

Signed-off-by: Anatol Pomozov <anatol.pomozov@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
  • Loading branch information
Anatol Pomozov authored and Mark Brown committed Jul 13, 2015
1 parent 508e619 commit 4ab0c59
Showing 1 changed file with 3 additions and 12 deletions.
15 changes: 3 additions & 12 deletions sound/soc/codecs/max98357a.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,9 @@ static int max98357a_codec_probe(struct snd_soc_codec *codec)
struct gpio_desc *sdmode;

sdmode = devm_gpiod_get_optional(codec->dev, "sdmode", GPIOD_OUT_LOW);
if (IS_ERR(sdmode)) {
dev_err(codec->dev, "%s() unable to get sdmode GPIO: %ld\n",
__func__, PTR_ERR(sdmode));
if (IS_ERR(sdmode))
return PTR_ERR(sdmode);
}

snd_soc_codec_set_drvdata(codec, sdmode);

return 0;
Expand Down Expand Up @@ -106,15 +104,8 @@ static struct snd_soc_dai_driver max98357a_dai_driver = {

static int max98357a_platform_probe(struct platform_device *pdev)
{
int ret;

ret = snd_soc_register_codec(&pdev->dev, &max98357a_codec_driver,
return snd_soc_register_codec(&pdev->dev, &max98357a_codec_driver,
&max98357a_dai_driver, 1);
if (ret)
dev_err(&pdev->dev, "%s() error registering codec driver: %d\n",
__func__, ret);

return ret;
}

static int max98357a_platform_remove(struct platform_device *pdev)
Expand Down

0 comments on commit 4ab0c59

Please sign in to comment.