From: Marek Vasut Date: Fri, 8 May 2026 12:22:12 +0000 (+0200) Subject: power: domain: scmi: Staticize and constify driver ops X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=1aea809ba2da6ad3af16d50166d94b7b376e017c;p=thirdparty%2Fu-boot.git power: domain: scmi: Staticize and constify driver ops Set the ops structure as static const. The structure is not accessible from outside of this driver and is not going to be modified at runtime. Signed-off-by: Marek Vasut Reviewed-by: Peng Fan Signed-off-by: Peng Fan --- diff --git a/drivers/power/domain/scmi-power-domain.c b/drivers/power/domain/scmi-power-domain.c index e8c0ba8878e..6dcc259ad8f 100644 --- a/drivers/power/domain/scmi-power-domain.c +++ b/drivers/power/domain/scmi-power-domain.c @@ -179,7 +179,7 @@ static int scmi_power_domain_probe(struct udevice *dev) return 0; } -struct power_domain_ops scmi_power_domain_ops = { +static const struct power_domain_ops scmi_power_domain_ops = { .on = scmi_power_domain_on, .off = scmi_power_domain_off, };