diff options
author | Nicolas Saenz Julienne <nsaenzju@redhat.com> | 2021-06-29 15:17:23 +0300 |
---|---|---|
committer | Maxime Ripard <maxime@cerno.tech> | 2021-07-06 12:15:21 +0300 |
commit | 9d9fb756b5391c2eb93ffdb24f9d2b30c92acc5b (patch) | |
tree | 0f4bf7f13295b67e4152b3344c939bc33e5e87a6 /drivers/gpu/drm/vc4 | |
parent | 375cca1cfeb5c55dc0e80caecf36e927855d2bb8 (diff) | |
download | linux-9d9fb756b5391c2eb93ffdb24f9d2b30c92acc5b.tar.xz |
drm/vc4: hdmi: Limit noise when deferring snd card registration
We don't want to print an error message each time
devm_snd_soc_register_card() returns -EPROBE_DEFER, the function will
most likely succeed some time in the future, once the missing resources
are available. So use dev_err_probe(), which will redirect the messages
to the debug log level in such case.
Signed-off-by: Nicolas Saenz Julienne <nsaenzju@redhat.com>
Signed-off-by: Maxime Ripard <maxime@cerno.tech>
Link: https://patchwork.freedesktop.org/patch/msgid/20210629121723.11523-1-nsaenzju@redhat.com
Diffstat (limited to 'drivers/gpu/drm/vc4')
-rw-r--r-- | drivers/gpu/drm/vc4/vc4_hdmi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/vc4/vc4_hdmi.c b/drivers/gpu/drm/vc4/vc4_hdmi.c index 4ebe216b10a9..8b2475545189 100644 --- a/drivers/gpu/drm/vc4/vc4_hdmi.c +++ b/drivers/gpu/drm/vc4/vc4_hdmi.c @@ -1568,7 +1568,7 @@ static int vc4_hdmi_audio_init(struct vc4_hdmi *vc4_hdmi) snd_soc_card_set_drvdata(card, vc4_hdmi); ret = devm_snd_soc_register_card(dev, card); if (ret) - dev_err(dev, "Could not register sound card: %d\n", ret); + dev_err_probe(dev, ret, "Could not register sound card\n"); return ret; |