hwmon: (max6621) Inverted if condition in max6621_read()
authorDan Carpenter <dan.carpenter@oracle.com>
Tue, 24 Oct 2017 09:47:42 +0000 (12:47 +0300)
committerGuenter Roeck <linux@roeck-us.net>
Mon, 30 Oct 2017 01:36:03 +0000 (18:36 -0700)
commit5813da157f7dbe03d268c8d0dd9425d0e3944910
treef4b6901727e4c5bfcd6af64b9dd77e185667d00b
parenta3bdc5b5bd369fcab8306b80d2c740e332183d20
hwmon: (max6621) Inverted if condition in max6621_read()

We intended to test for failure here but accidentally tested for
success.  It means that we don't set "*val" to true and it means that
if i2c_smbus_write_byte() does fail then we return success.

Fixes: e7895864b0d7 ("hwmon: (max6621) Add support for Maxim MAX6621 temperature sensor")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Vadim Pasternak <vadimp@mellanox.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
drivers/hwmon/max6621.c