Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/meson: Delete an error message in meson_dw_hdmi_bind()

The function “platform_get_irq” can log an error already.
Thus omit a redundant message for the exception handling in the
calling function.

This issue was detected by using the Coccinelle software.

Fixes: 3f68be7d8e96 ("drm/meson: Add support for HDMI encoder and DW-HDMI bridge + PHY")
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Reviewed-by: Neil Armstrong <narmstrong@baylibre.com>
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
Link: https://patchwork.freedesktop.org/patch/msgid/76f24122-4d3f-7670-9f06-edb4731a0661@web.de

authored by

Markus Elfring and committed by
Neil Armstrong
d918fe42 1e8a6ce9

+1 -3
+1 -3
drivers/gpu/drm/meson/meson_dw_hdmi.c
··· 1034 1034 return PTR_ERR(dw_plat_data->regm); 1035 1035 1036 1036 irq = platform_get_irq(pdev, 0); 1037 - if (irq < 0) { 1038 - dev_err(dev, "Failed to get hdmi top irq\n"); 1037 + if (irq < 0) 1039 1038 return irq; 1040 - } 1041 1039 1042 1040 ret = devm_request_threaded_irq(dev, irq, dw_hdmi_top_irq, 1043 1041 dw_hdmi_top_thread_irq, IRQF_SHARED,