]> git.baikalelectronics.ru Git - kernel.git/commit
hwmon: (adt7470) Fix incorrect return code check
authorCurt Brune <curt@cumulusnetworks.com>
Thu, 8 Aug 2013 19:11:03 +0000 (12:11 -0700)
committerGuenter Roeck <linux@roeck-us.net>
Thu, 8 Aug 2013 19:43:07 +0000 (12:43 -0700)
commit011a234b131f5f75973bc4f31a9f413027f59253
tree97c42976e05ecb05f94738cd8a8ae4ff2d25cf7b
parented880b9baffd6d96a1025a205af229851349ff5d
hwmon: (adt7470) Fix incorrect return code check

In adt7470_write_word_data(), which writes two bytes using
i2c_smbus_write_byte_data(), the return codes are incorrectly AND-ed
together when they should be OR-ed together.

The return code of i2c_smbus_write_byte_data() is zero for success.

The upshot is only the first byte was ever written to the hardware.
The 2nd byte was never written out.

I noticed that trying to set the fan speed limits was not working
correctly on my system.  Setting the fan speed limits is the only
code that uses adt7470_write_word_data().  After making the change
the limit settings work and the alarms work also.

Signed-off-by: Curt Brune <curt@cumulusnetworks.com>
Cc: stable@vger.kernel.org
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
drivers/hwmon/adt7470.c