hwmon: (ina2xx) Fix word size register read and write operations
commit080b98e9ab30734bda2f1b8b33cd55a4c4ef406a
authorGuenter Roeck <linux@roeck-us.net>
Tue, 11 Sep 2012 15:22:14 +0000 (11 08:22 -0700)
committerGuenter Roeck <linux@roeck-us.net>
Wed, 12 Sep 2012 13:42:11 +0000 (12 06:42 -0700)
tree9364a6d861f480ff494040402f8e196ae115c23f
parent73d7c119255615a26070f9d6cdb722a166a29015
hwmon: (ina2xx) Fix word size register read and write operations

The driver uses be16_to_cpu and cpu_to_be16 to convert data in SMBus word
operations from chip to host byte order. However, the data passed from and to
the SMBus word API functions is in host byte order, not in chip byte order.
Conversion should therefore use swab16 instead of be16 to change the byte order.

Replace driver internal word conversion functions with SMBus API functions to
solve the problem.

Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Cc: stable@vger.kernel.org # 3.5+
Acked-by: Jean Delvare <khali@linux-fr.org>
drivers/hwmon/ina2xx.c