diff options
author | Axel Lin <axel.lin@ingics.com> | 2015-07-10 12:59:13 +0800 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2015-08-09 13:44:26 -0700 |
commit | 7b7a8b4237a0d7808df5aa12f49f7979f879cf12 (patch) | |
tree | 0ae2a767b3ef65a0606dbd7fa397081be4216416 /drivers/hwmon/pmbus | |
parent | d4068a59277d0ad5374f71163d45599d589bd617 (diff) | |
download | op-kernel-dev-7b7a8b4237a0d7808df5aa12f49f7979f879cf12.zip op-kernel-dev-7b7a8b4237a0d7808df5aa12f49f7979f879cf12.tar.gz |
hwmon: (pmbus) Explicitly set regulator type for pmbus_regulator_ops
The pmbus_regulator_ops is for voltage regulators, so explicitly set
regulator type for better readability.
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon/pmbus')
-rw-r--r-- | drivers/hwmon/pmbus/pmbus.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/hwmon/pmbus/pmbus.h b/drivers/hwmon/pmbus/pmbus.h index 89a23ff..21f8b2f 100644 --- a/drivers/hwmon/pmbus/pmbus.h +++ b/drivers/hwmon/pmbus/pmbus.h @@ -390,6 +390,7 @@ extern struct regulator_ops pmbus_regulator_ops; .of_match = of_match_ptr(_name # _id), \ .regulators_node = of_match_ptr("regulators"), \ .ops = &pmbus_regulator_ops, \ + .type = REGULATOR_VOLTAGE, \ .owner = THIS_MODULE, \ } |