Commit e384b69a authored by Aya Mahfouz's avatar Aya Mahfouz Committed by Greg Kroah-Hartman

staging: iio: meter: add check on return variables

adds checks on variables that are used to return values. If
the value is less than zero, this indicates that an error
occurred and hence a message is printed through dev_err.
Checks are made on negative values only since spi_* functions
return negative error codes.

The functions were found using the following script but the
aforementioned modification was what was carried out in the end:
@@
identifier len,f;
@@

-int len;
 ... when != len
     when strict
-len =
+return
        f(...);
-return len;
Signed-off-by: default avatarAya Mahfouz <mahfouz.saif.elyazal@gmail.com>
Reviewed-by: default avatarDaniel Baluta <daniel.baluta@intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 82d28561
...@@ -303,14 +303,15 @@ static int ade7758_reset(struct device *dev) ...@@ -303,14 +303,15 @@ static int ade7758_reset(struct device *dev)
int ret; int ret;
u8 val; u8 val;
ade7758_spi_read_reg_8(dev, ret = ade7758_spi_read_reg_8(dev, ADE7758_OPMODE, &val);
ADE7758_OPMODE, if (ret < 0) {
&val); dev_err(dev, "Failed to read opmode reg\n");
return ret;
}
val |= 1 << 6; /* Software Chip Reset */ val |= 1 << 6; /* Software Chip Reset */
ret = ade7758_spi_write_reg_8(dev, ret = ade7758_spi_write_reg_8(dev, ADE7758_OPMODE, val);
ADE7758_OPMODE, if (ret < 0)
val); dev_err(dev, "Failed to write opmode reg\n");
return ret; return ret;
} }
...@@ -444,14 +445,15 @@ static int ade7758_stop_device(struct device *dev) ...@@ -444,14 +445,15 @@ static int ade7758_stop_device(struct device *dev)
int ret; int ret;
u8 val; u8 val;
ade7758_spi_read_reg_8(dev, ret = ade7758_spi_read_reg_8(dev, ADE7758_OPMODE, &val);
ADE7758_OPMODE, if (ret < 0) {
&val); dev_err(dev, "Failed to read opmode reg\n");
return ret;
}
val |= 7 << 3; /* ADE7758 powered down */ val |= 7 << 3; /* ADE7758 powered down */
ret = ade7758_spi_write_reg_8(dev, ret = ade7758_spi_write_reg_8(dev, ADE7758_OPMODE, val);
ADE7758_OPMODE, if (ret < 0)
val); dev_err(dev, "Failed to write opmode reg\n");
return ret; return ret;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment