ASoC: codecs: ssm2305: Use dev_err_probe() helper
Use the dev_err_probe() helper, instead of open-coding the same operation. Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Link: https://lore.kernel.org/r/20211214020843.2225831-10-kuninori.morimoto.gx@renesas.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
17d7044715
commit
382ae99559
@ -57,7 +57,6 @@ static int ssm2305_probe(struct platform_device *pdev)
|
|||||||
{
|
{
|
||||||
struct device *dev = &pdev->dev;
|
struct device *dev = &pdev->dev;
|
||||||
struct ssm2305 *priv;
|
struct ssm2305 *priv;
|
||||||
int err;
|
|
||||||
|
|
||||||
/* Allocate the private data */
|
/* Allocate the private data */
|
||||||
priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
|
priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
|
||||||
@ -69,13 +68,9 @@ static int ssm2305_probe(struct platform_device *pdev)
|
|||||||
/* Get shutdown gpio */
|
/* Get shutdown gpio */
|
||||||
priv->gpiod_shutdown = devm_gpiod_get(dev, "shutdown",
|
priv->gpiod_shutdown = devm_gpiod_get(dev, "shutdown",
|
||||||
GPIOD_OUT_LOW);
|
GPIOD_OUT_LOW);
|
||||||
if (IS_ERR(priv->gpiod_shutdown)) {
|
if (IS_ERR(priv->gpiod_shutdown))
|
||||||
err = PTR_ERR(priv->gpiod_shutdown);
|
return dev_err_probe(dev, PTR_ERR(priv->gpiod_shutdown),
|
||||||
if (err != -EPROBE_DEFER)
|
"Failed to get 'shutdown' gpio\n");
|
||||||
dev_err(dev, "Failed to get 'shutdown' gpio: %d\n",
|
|
||||||
err);
|
|
||||||
return err;
|
|
||||||
}
|
|
||||||
|
|
||||||
return devm_snd_soc_register_component(dev, &ssm2305_component_driver,
|
return devm_snd_soc_register_component(dev, &ssm2305_component_driver,
|
||||||
NULL, 0);
|
NULL, 0);
|
||||||
|
Loading…
Reference in New Issue
Block a user