Commit ae34934f authored by Stuart Yoder's avatar Stuart Yoder Committed by Greg Kroah-Hartman

staging: fsl-mc: dprc: add missing irq free

add missing free of the Linux irq when tearing down interrupts
Signed-off-by: default avatarStuart Yoder <stuart.yoder@nxp.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f9362714
...@@ -760,7 +760,12 @@ static int dprc_probe(struct fsl_mc_device *mc_dev) ...@@ -760,7 +760,12 @@ static int dprc_probe(struct fsl_mc_device *mc_dev)
*/ */
static void dprc_teardown_irq(struct fsl_mc_device *mc_dev) static void dprc_teardown_irq(struct fsl_mc_device *mc_dev)
{ {
struct fsl_mc_device_irq *irq = mc_dev->irqs[0];
(void)disable_dprc_irq(mc_dev); (void)disable_dprc_irq(mc_dev);
devm_free_irq(&mc_dev->dev, irq->msi_desc->irq, &mc_dev->dev);
fsl_mc_free_irqs(mc_dev); fsl_mc_free_irqs(mc_dev);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment