All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] imx-drm: imx-tve: Check the return value of 'regulator_enable()'
@ 2013-05-20 13:55 Fabio Estevam
  2013-05-20 13:55 ` [PATCH 2/3] imx-drm: imx-tve: Let device core handle pinctrl Fabio Estevam
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Fabio Estevam @ 2013-05-20 13:55 UTC (permalink / raw)
  To: gregkh; +Cc: kernel, shawn.guo, linux-kernel, Fabio Estevam

Check the return value of 'regulator_enable()' to fix the following build error:

drivers/staging/imx-drm/imx-tve.c: In function 'imx_tve_probe':
drivers/staging/imx-drm/imx-tve.c:671:19: warning: ignoring return value of 'regulator_enable', declared with attribute warn_unused_result [-Wunused-result]

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 drivers/staging/imx-drm/imx-tve.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/staging/imx-drm/imx-tve.c b/drivers/staging/imx-drm/imx-tve.c
index a6efa8f6..ce65ad3 100644
--- a/drivers/staging/imx-drm/imx-tve.c
+++ b/drivers/staging/imx-drm/imx-tve.c
@@ -668,7 +668,9 @@ static int imx_tve_probe(struct platform_device *pdev)
 	tve->dac_reg = devm_regulator_get(&pdev->dev, "dac");
 	if (!IS_ERR(tve->dac_reg)) {
 		regulator_set_voltage(tve->dac_reg, 2750000, 2750000);
-		regulator_enable(tve->dac_reg);
+		ret = regulator_enable(tve->dac_reg);
+		if (ret)
+			return ret;
 	}
 
 	tve->clk = devm_clk_get(&pdev->dev, "tve");
-- 
1.8.1.2



^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2013-05-21  6:38 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-05-20 13:55 [PATCH 1/3] imx-drm: imx-tve: Check the return value of 'regulator_enable()' Fabio Estevam
2013-05-20 13:55 ` [PATCH 2/3] imx-drm: imx-tve: Let device core handle pinctrl Fabio Estevam
2013-05-21  2:40   ` Shawn Guo
2013-05-20 13:55 ` [PATCH 3/3] imx-drm: parallel-display: " Fabio Estevam
2013-05-21  2:41   ` Shawn Guo
2013-05-21  2:39 ` [PATCH 1/3] imx-drm: imx-tve: Check the return value of 'regulator_enable()' Shawn Guo
2013-05-21  6:38 ` Sascha Hauer

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.