diff mbox series

ASoC: mediatek: mt8183: fix error handling of platform_get_irq()

Message ID 20200507015442.191336-1-tzungbi@google.com (mailing list archive)
State Accepted
Commit fe944625194515e99fcbfb0d190d50986e2b6480
Headers show
Series ASoC: mediatek: mt8183: fix error handling of platform_get_irq() | expand

Commit Message

Tzung-Bi Shih May 7, 2020, 1:54 a.m. UTC
platform_get_irq() returns negative value on error instead of 0.

Signed-off-by: Tzung-Bi Shih <tzungbi@google.com>
---
 sound/soc/mediatek/mt8183/mt8183-afe-pcm.c | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

The patch is inspired by https://patchwork.kernel.org/patch/11531297/

Comments

Mark Brown May 7, 2020, 11:51 a.m. UTC | #1
On Thu, 7 May 2020 09:54:42 +0800, Tzung-Bi Shih wrote:
> platform_get_irq() returns negative value on error instead of 0.
> 
> Signed-off-by: Tzung-Bi Shih <tzungbi@google.com>
> ---
>  sound/soc/mediatek/mt8183/mt8183-afe-pcm.c | 7 +++----
>  1 file changed, 3 insertions(+), 4 deletions(-)
> 
> [...]

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-5.7

Thanks!

[1/1] ASoC: mediatek: mt8183: fix error handling of platform_get_irq()
      commit: fe944625194515e99fcbfb0d190d50986e2b6480

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark
diff mbox series

Patch

diff --git a/sound/soc/mediatek/mt8183/mt8183-afe-pcm.c b/sound/soc/mediatek/mt8183/mt8183-afe-pcm.c
index c8ded53bde1d..e0c4714da92c 100644
--- a/sound/soc/mediatek/mt8183/mt8183-afe-pcm.c
+++ b/sound/soc/mediatek/mt8183/mt8183-afe-pcm.c
@@ -1186,10 +1186,9 @@  static int mt8183_afe_pcm_dev_probe(struct platform_device *pdev)
 
 	/* request irq */
 	irq_id = platform_get_irq(pdev, 0);
-	if (!irq_id) {
-		dev_err(dev, "%pOFn no irq found\n", dev->of_node);
-		return -ENXIO;
-	}
+	if (irq_id < 0)
+		return irq_id;
+
 	ret = devm_request_irq(dev, irq_id, mt8183_afe_irq_handler,
 			       IRQF_TRIGGER_NONE, "asys-isr", (void *)afe);
 	if (ret) {