Skip to content

Commit

Permalink
From patchwork series 431326
Browse files Browse the repository at this point in the history
  • Loading branch information
Fox Snowpatch committed Nov 15, 2024
1 parent ad0be02 commit 54bc02d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion drivers/soc/fsl/qe/qmc.c
Original file line number Diff line number Diff line change
Expand Up @@ -2004,8 +2004,10 @@ static int qmc_probe(struct platform_device *pdev)

/* Set the irq handler */
irq = platform_get_irq(pdev, 0);
if (irq < 0)
if (irq < 0) {
ret = irq;
goto err_exit_xcc;
}
ret = devm_request_irq(qmc->dev, irq, qmc_irq_handler, 0, "qmc", qmc);
if (ret < 0)
goto err_exit_xcc;
Expand Down

0 comments on commit 54bc02d

Please sign in to comment.