* [PATCH RESEND] sound: omap-twl4030: do not complain on -EPROBE_DEFER when initializing
@ 2018-01-24 17:20 Ladislav Michl
2018-02-11 18:01 ` Jarkko Nikula
0 siblings, 1 reply; 2+ messages in thread
From: Ladislav Michl @ 2018-01-24 17:20 UTC (permalink / raw)
To: alsa-devel; +Cc: Peter Ujfalusi, Jarkko Nikula
Don't complain on -EPROBE_DEFER when when initializing, the driver
probe will be retried later.
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
Note: Just a resend of patch from 9 Nov 2016 as there were no
reply by then.
sound/soc/omap/omap-twl4030.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/sound/soc/omap/omap-twl4030.c b/sound/soc/omap/omap-twl4030.c
index cccc316743fa..7c1f71884768 100644
--- a/sound/soc/omap/omap-twl4030.c
+++ b/sound/soc/omap/omap-twl4030.c
@@ -322,8 +322,10 @@ static int omap_twl4030_probe(struct platform_device *pdev)
snd_soc_card_set_drvdata(card, priv);
ret = devm_snd_soc_register_card(&pdev->dev, card);
if (ret) {
- dev_err(&pdev->dev, "devm_snd_soc_register_card() failed: %d\n",
- ret);
+ if (ret != -EPROBE_DEFER)
+ dev_err(&pdev->dev,
+ "devm_snd_soc_register_card() failed: %d\n",
+ ret);
return ret;
}
--
2.15.1
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH RESEND] sound: omap-twl4030: do not complain on -EPROBE_DEFER when initializing
2018-01-24 17:20 [PATCH RESEND] sound: omap-twl4030: do not complain on -EPROBE_DEFER when initializing Ladislav Michl
@ 2018-02-11 18:01 ` Jarkko Nikula
0 siblings, 0 replies; 2+ messages in thread
From: Jarkko Nikula @ 2018-02-11 18:01 UTC (permalink / raw)
To: Ladislav Michl, alsa-devel; +Cc: Peter Ujfalusi
Hi
On 01/24/18 19:20, Ladislav Michl wrote:
> Don't complain on -EPROBE_DEFER when when initializing, the driver
> probe will be retried later.
>
> Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
> ---
> Note: Just a resend of patch from 9 Nov 2016 as there were no
> reply by then.
>
> sound/soc/omap/omap-twl4030.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/sound/soc/omap/omap-twl4030.c b/sound/soc/omap/omap-twl4030.c
> index cccc316743fa..7c1f71884768 100644
> --- a/sound/soc/omap/omap-twl4030.c
> +++ b/sound/soc/omap/omap-twl4030.c
> @@ -322,8 +322,10 @@ static int omap_twl4030_probe(struct platform_device *pdev)
> snd_soc_card_set_drvdata(card, priv);
> ret = devm_snd_soc_register_card(&pdev->dev, card);
> if (ret) {
> - dev_err(&pdev->dev, "devm_snd_soc_register_card() failed: %d\n",
> - ret);
> + if (ret != -EPROBE_DEFER)
> + dev_err(&pdev->dev,
> + "devm_snd_soc_register_card() failed: %d\n",
> + ret);
> return ret;
> }
Sorry the delay. Please Cc Mark Brown <broonie@kernel.org> and repost.
You may add my
Acked-by: Jarkko Nikula <jarkko.nikula@bitmer.com>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2018-02-11 18:01 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-24 17:20 [PATCH RESEND] sound: omap-twl4030: do not complain on -EPROBE_DEFER when initializing Ladislav Michl
2018-02-11 18:01 ` Jarkko Nikula
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).