]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
drivers/video/backlight/l4f00242t03.c: check return value of regulator_enable()
authorJingoo Han <jg1.han@samsung.com>
Wed, 20 Mar 2013 04:07:38 +0000 (15:07 +1100)
committerStephen Rothwell <sfr@canb.auug.org.au>
Thu, 21 Mar 2013 05:34:00 +0000 (16:34 +1100)
regulator_enable() is marked as as __must_check.  Therefore the return
value of regulator_enable() should be checked.  Also, this patch checks
return value of regulator_set_voltage().

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
drivers/video/backlight/l4f00242t03.c

index fb61557713266ee0abd2ec616b7f177e789b88d5..8d54c3c10807fc790d704240c69f96e70b957244 100644 (file)
@@ -51,14 +51,31 @@ static void l4f00242t03_lcd_init(struct spi_device *spi)
        struct l4f00242t03_pdata *pdata = spi->dev.platform_data;
        struct l4f00242t03_priv *priv = spi_get_drvdata(spi);
        const u16 cmd[] = { 0x36, param(0), 0x3A, param(0x60) };
+       int ret;
 
        dev_dbg(&spi->dev, "initializing LCD\n");
 
-       regulator_set_voltage(priv->io_reg, 1800000, 1800000);
-       regulator_enable(priv->io_reg);
+       ret = regulator_set_voltage(priv->io_reg, 1800000, 1800000);
+       if (ret) {
+               dev_err(&spi->dev, "failed to set the IO regulator voltage.\n");
+               return;
+       }
+       ret = regulator_enable(priv->io_reg);
+       if (ret) {
+               dev_err(&spi->dev, "failed to enable the IO regulator.\n");
+               return;
+       }
 
-       regulator_set_voltage(priv->core_reg, 2800000, 2800000);
-       regulator_enable(priv->core_reg);
+       ret = regulator_set_voltage(priv->core_reg, 2800000, 2800000);
+       if (ret) {
+               dev_err(&spi->dev, "failed to set the core regulator voltage.\n");
+               return;
+       }
+       ret = regulator_enable(priv->core_reg);
+       if (ret) {
+               dev_err(&spi->dev, "failed to enable the core regulator.\n");
+               return;
+       }
 
        l4f00242t03_reset(pdata->reset_gpio);