summaryrefslogtreecommitdiff
path: root/sound/soc/sti
diff options
context:
space:
mode:
authorDong Aisheng <aisheng.dong@nxp.com>2019-08-16 18:01:53 +0800
committerDong Aisheng <aisheng.dong@nxp.com>2019-11-25 15:53:33 +0800
commitf337340c236307558df0f79d28bc4e4177d6a8cc (patch)
treec266fd286704c3060e9757fed499db3f50be9619 /sound/soc/sti
parentab150b3f7c5606bce09b295e2a854559718f58ae (diff)
Revert "ASoC: Remove dev_err() usage after platform_get_irq()"
This reverts commit cf9441adb1a35506d7606866c382b9d8614169b5.
Diffstat (limited to 'sound/soc/sti')
-rw-r--r--sound/soc/sti/sti_uniperif.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sound/soc/sti/sti_uniperif.c b/sound/soc/sti/sti_uniperif.c
index ee4a0151e63e..645bcbe91601 100644
--- a/sound/soc/sti/sti_uniperif.c
+++ b/sound/soc/sti/sti_uniperif.c
@@ -426,8 +426,10 @@ static int sti_uniperiph_cpu_dai_of(struct device_node *node,
UNIPERIF_FIFO_DATA_OFFSET(uni);
uni->irq = platform_get_irq(priv->pdev, 0);
- if (uni->irq < 0)
+ if (uni->irq < 0) {
+ dev_err(dev, "Failed to get IRQ resource\n");
return -ENXIO;
+ }
uni->type = dev_data->type;