[PATCH v3] leds-lp5523: fix compiler warning

From: Danny Kukawka
Date: Tue Feb 14 2012 - 09:44:10 EST


Fix for some -Wuninitialized compiler warnings related to not
checking lp5523_read() return values but using to the function
passed variables later.

v3: handle the error cases from lp5523_read()

Signed-off-by: Danny Kukawka <danny.kukawka@xxxxxxxxx>
---
drivers/leds/leds-lp5523.c | 25 +++++++++++++++++++++----
1 files changed, 21 insertions(+), 4 deletions(-)

diff --git a/drivers/leds/leds-lp5523.c b/drivers/leds/leds-lp5523.c
index 73e791a..2b2d10b 100644
--- a/drivers/leds/leds-lp5523.c
+++ b/drivers/leds/leds-lp5523.c
@@ -243,7 +243,13 @@ static int lp5523_configure(struct i2c_client *client)

/* Let the programs run for couple of ms and check the engine status */
usleep_range(3000, 6000);
- lp5523_read(client, LP5523_REG_STATUS, &status);
+ ret = lp5523_read(client, LP5523_REG_STATUS, &status);
+
+ if (ret) {
+ dev_err(&client->dev, "could not read status\n");
+ return -1;
+ }
+
status &= LP5523_ENG_STATUS_MASK;

if (status == LP5523_ENG_STATUS_MASK) {
@@ -256,7 +262,7 @@ static int lp5523_configure(struct i2c_client *client)

dev_info(&client->dev, "disabling engines\n");

- ret |= lp5523_write(client, LP5523_REG_OP_MODE, LP5523_CMD_DISABLED);
+ ret = lp5523_write(client, LP5523_REG_OP_MODE, LP5523_CMD_DISABLED);

return ret;
}
@@ -458,10 +464,16 @@ static ssize_t lp5523_selftest(struct device *dev,
LP5523_EN_LEDTEST | 16);
usleep_range(3000, 6000); /* ADC conversion time is typically 2.7 ms */
ret = lp5523_read(chip->client, LP5523_REG_STATUS, &status);
+ if (ret)
+ goto fail;
+
if (!(status & LP5523_LEDTEST_DONE))
usleep_range(3000, 6000); /* Was not ready. Wait little bit */

- ret |= lp5523_read(chip->client, LP5523_REG_LED_TEST_ADC, &vdd);
+ ret = lp5523_read(chip->client, LP5523_REG_LED_TEST_ADC, &vdd);
+ if (ret)
+ goto fail;
+
vdd--; /* There may be some fluctuation in measurement */

for (i = 0; i < LP5523_LEDS; i++) {
@@ -483,9 +495,14 @@ static ssize_t lp5523_selftest(struct device *dev,
/* ADC conversion time is 2.7 ms typically */
usleep_range(3000, 6000);
ret = lp5523_read(chip->client, LP5523_REG_STATUS, &status);
+ if (ret)
+ goto fail;
+
if (!(status & LP5523_LEDTEST_DONE))
usleep_range(3000, 6000);/* Was not ready. Wait. */
- ret |= lp5523_read(chip->client, LP5523_REG_LED_TEST_ADC, &adc);
+ ret = lp5523_read(chip->client, LP5523_REG_LED_TEST_ADC, &adc);
+ if (ret)
+ goto fail;

if (adc >= vdd || adc < LP5523_ADC_SHORTCIRC_LIM)
pos += sprintf(buf + pos, "LED %d FAIL\n", i);
--
1.7.7.3

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/