Skip to content

Commit

Permalink
spi: fsl: Call irq_dispose_mapping in err path
Browse files Browse the repository at this point in the history
Irq_dispose_mapping should be called in err path to release
the resources that irq_of_parse_and_map requested.

Signed-off-by: Liu Xiang <liu.xiang6@zte.com.cn>
Signed-off-by: Mark Brown <broonie@kernel.org>
  • Loading branch information
Liu Xiang authored and Mark Brown committed Mar 13, 2017
1 parent fafd679 commit 500a32a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/spi/spi-fsl-spi.c
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,7 @@ static int of_fsl_spi_probe(struct platform_device *ofdev)
struct device_node *np = ofdev->dev.of_node;
struct spi_master *master;
struct resource mem;
int irq, type;
int irq = 0, type;
int ret = -ENOMEM;

ret = of_mpc8xxx_spi_probe(ofdev);
Expand Down Expand Up @@ -846,6 +846,7 @@ static int of_fsl_spi_probe(struct platform_device *ofdev)
return 0;

err:
irq_dispose_mapping(irq);
if (type == TYPE_FSL)
of_fsl_spi_free_chipselects(dev);
return ret;
Expand Down

0 comments on commit 500a32a

Please sign in to comment.