]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
ALSA: x86: fix error return code in hdmi_lpe_audio_probe()
authorGustavo A. R. Silva <garsilva@embeddedor.com>
Fri, 30 Jun 2017 20:18:41 +0000 (15:18 -0500)
committerTakashi Iwai <tiwai@suse.de>
Fri, 30 Jun 2017 20:38:18 +0000 (22:38 +0200)
commit1967158fff819b38f4e46763ca8df067b4b69f59
tree5528434bb1a8e79ee67fa85a2244b0a74b6fc315
parent0a6f0600efc3df0179a33188c30b5026bd9d1c27
ALSA: x86: fix error return code in hdmi_lpe_audio_probe()

platform_get_irq() returns an error code, but the intel_hdmi_audio
driver ignores it and always returns -ENODEV. This is not correct,
and prevents -EPROBE_DEFER from being propagated properly. Also,
notice that platform_get_irq() no longer returns 0 on error.

Print error message and propagate the return value of platform_get_irq
on failure.

Signed-off-by: Gustavo A. R. Silva <garsilva@embeddedor.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/x86/intel_hdmi_audio.c