mfd: Fix jz4740-adc resource reclaim in probe error path
authorAxel Lin <axel.lin@gmail.com>
Thu, 29 Jul 2010 08:28:25 +0000 (16:28 +0800)
committerSamuel Ortiz <sameo@linux.intel.com>
Thu, 12 Aug 2010 09:28:01 +0000 (11:28 +0200)
If mfd_add_devices() fail, we need to relese allocated resources.

Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
drivers/mfd/jz4740-adc.c

index 7a844ae..b30e44a 100644 (file)
@@ -322,9 +322,15 @@ static int __devinit jz4740_adc_probe(struct platform_device *pdev)
        writeb(0x00, adc->base + JZ_REG_ADC_ENABLE);
        writeb(0xff, adc->base + JZ_REG_ADC_CTRL);
 
-       return mfd_add_devices(&pdev->dev, 0, jz4740_adc_cells,
+       ret = mfd_add_devices(&pdev->dev, 0, jz4740_adc_cells,
                ARRAY_SIZE(jz4740_adc_cells), mem_base, adc->irq_base);
+       if (ret < 0)
+               goto err_clk_put;
 
+       return 0;
+
+err_clk_put:
+       clk_put(adc->clk);
 err_iounmap:
        platform_set_drvdata(pdev, NULL);
        iounmap(adc->base);