hwmon: (pmbus/core) Prevent unintentional setting of page to 0xFF
commit6dcf2fb5e8db3704f50af1f198256cb4e2453f8b
authorEdward A. James <eajames@us.ibm.com>
Fri, 27 Oct 2017 16:55:05 +0000 (27 11:55 -0500)
committerGuenter Roeck <linux@roeck-us.net>
Mon, 30 Oct 2017 01:35:54 +0000 (29 18:35 -0700)
tree2f7353f4a43eb7dce9c1e9ebdd62443b69408854
parent0b07194bb55ed836c2cc7c22e866b87a14681984
hwmon: (pmbus/core) Prevent unintentional setting of page to 0xFF

The pmbus core may call read/write word data functions with a page value
of -1, intending to perform the operation without setting the page.
However, the read/write word data functions accept only unsigned 8-bit
page numbers, and therefore cannot check for negative page number to
avoid setting the page. This results in setting the page number to 0xFF.
This may result in errors or undefined behavior of some devices
(specifically the ir35221, which allows the page to be set to 0xFF,
but some subsequent operations to read registers may fail).

Switch the pmbus_set_page page parameter to an integer and perform the
check for negative page there. Make read/write functions consistent in
accepting an integer page number parameter.

Signed-off-by: Edward A. James <eajames@us.ibm.com>
Fixes: cbcdec6202c9 ("hwmon: (pmbus): Access word data for STATUS_WORD")
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
drivers/hwmon/pmbus/pmbus.h
drivers/hwmon/pmbus/pmbus_core.c