diff options
author | YueHaibing <yuehaibing@huawei.com> | 2019-10-25 17:39:05 +0800 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2019-10-25 14:43:23 +0200 |
commit | 0a671dc500553cf6f4cc3efbcb0923b5e9adccb5 (patch) | |
tree | c5e9261abfc50cde98908a095e747a63db3752e0 /sound/x86 | |
parent | cc8f81c7e625168a60843b2b39e3a327cf5170fe (diff) | |
download | linux-0a671dc500553cf6f4cc3efbcb0923b5e9adccb5.tar.bz2 |
ALSA: intel_hdmi: Remove dev_err() on platform_get_irq() failure
platform_get_irq() will call dev_err() itself on failure,
so there is no need for the driver to also do this.
This is detected by coccinelle.
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Link: https://lore.kernel.org/r/20191025093905.14888-1-yuehaibing@huawei.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/x86')
-rw-r--r-- | sound/x86/intel_hdmi_audio.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sound/x86/intel_hdmi_audio.c b/sound/x86/intel_hdmi_audio.c index 5fd4e32247a6..cd389d21219a 100644 --- a/sound/x86/intel_hdmi_audio.c +++ b/sound/x86/intel_hdmi_audio.c @@ -1708,10 +1708,8 @@ static int hdmi_lpe_audio_probe(struct platform_device *pdev) /* get resources */ irq = platform_get_irq(pdev, 0); - if (irq < 0) { - dev_err(&pdev->dev, "Could not get irq resource: %d\n", irq); + if (irq < 0) return irq; - } res_mmio = platform_get_resource(pdev, IORESOURCE_MEM, 0); if (!res_mmio) { |