From: Axel Lin Date: Fri, 12 Apr 2019 14:06:56 +0000 (+0800) Subject: regulator: ab8500-ext: Constify ab8500_ext_regulator_ops X-Git-Tag: Ubuntu-5.13.0-19.19~8363^2~40 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=8e5be4f7e142daa47303ee8238b891833024e7df;p=mirror_ubuntu-jammy-kernel.git regulator: ab8500-ext: Constify ab8500_ext_regulator_ops ab8500_ext_regulator_ops never need to be modified, make it const so compiler can put it to .rodata. Signed-off-by: Axel Lin Signed-off-by: Mark Brown --- diff --git a/drivers/regulator/ab8500-ext.c b/drivers/regulator/ab8500-ext.c index f232a7a90fd5..95704446d89e 100644 --- a/drivers/regulator/ab8500-ext.c +++ b/drivers/regulator/ab8500-ext.c @@ -718,7 +718,7 @@ static int ab8500_ext_list_voltage(struct regulator_dev *rdev, return -EINVAL; } -static struct regulator_ops ab8500_ext_regulator_ops = { +static const struct regulator_ops ab8500_ext_regulator_ops = { .enable = ab8500_ext_regulator_enable, .disable = ab8500_ext_regulator_disable, .is_enabled = ab8500_ext_regulator_is_enabled,