From mboxrd@z Thu Jan 1 00:00:00 1970 From: lee.jones@linaro.org (Lee Jones) Date: Fri, 15 Feb 2013 12:56:33 +0000 Subject: [PATCH 02/35] mfd: ab8500-gpadc: Allow tvout regulator to be missing In-Reply-To: <1360933026-30325-1-git-send-email-lee.jones@linaro.org> References: <1360933026-30325-1-git-send-email-lee.jones@linaro.org> Message-ID: <1360933026-30325-3-git-send-email-lee.jones@linaro.org> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org From: Jonas Aaberg Signed-off-by: Jonas Aaberg Signed-off-by: Lee Jones dev))) return gpadc; @@ -587,7 +590,8 @@ static int ab8500_gpadc_runtime_suspend(struct device *dev) { struct ab8500_gpadc *gpadc = dev_get_drvdata(dev); - regulator_disable(gpadc->regu); + if (gpadc->regu) + regulator_disable(gpadc->regu); return 0; } @@ -595,7 +599,8 @@ static int ab8500_gpadc_runtime_resume(struct device *dev) { struct ab8500_gpadc *gpadc = dev_get_drvdata(dev); - regulator_enable(gpadc->regu); + if (gpadc->regu) + regulator_enable(gpadc->regu); return 0; } @@ -670,9 +675,8 @@ static int ab8500_gpadc_probe(struct platform_device *pdev) /* VTVout LDO used to power up ab8500-GPADC */ gpadc->regu = regulator_get(&pdev->dev, "vddadc"); if (IS_ERR(gpadc->regu)) { - ret = PTR_ERR(gpadc->regu); - dev_err(gpadc->dev, "failed to get vtvout LDO\n"); - goto fail_irq; + dev_warn(gpadc->dev, "failed to get vtvout LDO\n"); + gpadc->regu = NULL; } platform_set_drvdata(pdev, gpadc); @@ -688,8 +692,6 @@ static int ab8500_gpadc_probe(struct platform_device *pdev) list_add_tail(&gpadc->node, &ab8500_gpadc_list); dev_dbg(gpadc->dev, "probe success\n"); return 0; -fail_irq: - free_irq(gpadc->irq, gpadc); fail: kfree(gpadc); gpadc = NULL; @@ -708,7 +710,8 @@ static int ab8500_gpadc_remove(struct platform_device *pdev) pm_runtime_get_sync(gpadc->dev); pm_runtime_disable(gpadc->dev); - regulator_disable(gpadc->regu); + if (gpadc->regu) + regulator_disable(gpadc->regu); pm_runtime_set_suspended(gpadc->dev); -- 1.7.10.4