diff options
author | Vadim Pasternak <[email protected]> | 2021-05-11 08:56:17 +0300 |
---|---|---|
committer | Guenter Roeck <[email protected]> | 2021-06-17 04:21:45 -0700 |
commit | 0c1acde1d3d0032814be89c838483471582bc32e (patch) | |
tree | 9c26753f272f2f3fe1c01cffb3e328f9a0ba0ec1 | |
parent | 4943c6039d4ac1ae8535786da7c2a28c376c589c (diff) |
hwmon: (pmbus) Increase maximum number of phases per page
Increase maximum number of phases from 8 to 10 to support multi-phase
devices allowing up to 10 phases.
Signed-off-by: Vadim Pasternak <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Guenter Roeck <[email protected]>
-rw-r--r-- | drivers/hwmon/pmbus/pmbus.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/pmbus/pmbus.h b/drivers/hwmon/pmbus/pmbus.h index 3968924f8533..e0aa8aa46d8c 100644 --- a/drivers/hwmon/pmbus/pmbus.h +++ b/drivers/hwmon/pmbus/pmbus.h @@ -375,7 +375,7 @@ enum pmbus_sensor_classes { }; #define PMBUS_PAGES 32 /* Per PMBus specification */ -#define PMBUS_PHASES 8 /* Maximum number of phases per page */ +#define PMBUS_PHASES 10 /* Maximum number of phases per page */ /* Functionality bit mask */ #define PMBUS_HAVE_VIN BIT(0) |