From: Axel Lin Date: Mon, 28 Jan 2019 14:19:21 +0000 (+0800) Subject: regulator: isl6271a: Constify isl_core_ops and isl_fixed_ops X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=1dceee5eb320e76c996ee7e61795299fe40aa4cc;p=openwrt%2Fstaging%2Fblogic.git regulator: isl6271a: Constify isl_core_ops and isl_fixed_ops Signed-off-by: Axel Lin Signed-off-by: Mark Brown --- diff --git a/drivers/regulator/isl6271a-regulator.c b/drivers/regulator/isl6271a-regulator.c index ae29c8773057..6f28bba81d13 100644 --- a/drivers/regulator/isl6271a-regulator.c +++ b/drivers/regulator/isl6271a-regulator.c @@ -65,14 +65,14 @@ static int isl6271a_set_voltage_sel(struct regulator_dev *dev, return err; } -static struct regulator_ops isl_core_ops = { +static const struct regulator_ops isl_core_ops = { .get_voltage_sel = isl6271a_get_voltage_sel, .set_voltage_sel = isl6271a_set_voltage_sel, .list_voltage = regulator_list_voltage_linear, .map_voltage = regulator_map_voltage_linear, }; -static struct regulator_ops isl_fixed_ops = { +static const struct regulator_ops isl_fixed_ops = { .list_voltage = regulator_list_voltage_linear, };