hwmon: (pmbus_core) Constify pmbus_regulator_ops

pmbus_regulator_ops is not modified after initialized, so make it const.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
This commit is contained in:
Axel Lin 2015-07-10 13:00:08 +08:00 committed by Guenter Roeck
parent 7b7a8b4237
commit a07d73113f
2 changed files with 2 additions and 2 deletions

View file

@ -380,7 +380,7 @@ struct pmbus_driver_info {
/* Regulator ops */ /* Regulator ops */
extern struct regulator_ops pmbus_regulator_ops; extern const struct regulator_ops pmbus_regulator_ops;
/* Macro for filling in array of struct regulator_desc */ /* Macro for filling in array of struct regulator_desc */
#define PMBUS_REGULATOR(_name, _id) \ #define PMBUS_REGULATOR(_name, _id) \

View file

@ -1796,7 +1796,7 @@ static int pmbus_regulator_disable(struct regulator_dev *rdev)
return _pmbus_regulator_on_off(rdev, 0); return _pmbus_regulator_on_off(rdev, 0);
} }
struct regulator_ops pmbus_regulator_ops = { const struct regulator_ops pmbus_regulator_ops = {
.enable = pmbus_regulator_enable, .enable = pmbus_regulator_enable,
.disable = pmbus_regulator_disable, .disable = pmbus_regulator_disable,
.is_enabled = pmbus_regulator_is_enabled, .is_enabled = pmbus_regulator_is_enabled,