mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-06-02 09:46:37 +03:00
power: domain: imx8-legacy: 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 <marek.vasut+renesas@mailbox.org> Reviewed-by: Peng Fan <peng.fan@nxp.com> Signed-off-by: Peng Fan <peng.fan@nxp.com>
This commit is contained in:
@@ -347,7 +347,7 @@ static const struct udevice_id imx8_power_domain_ids[] = {
|
||||
{ }
|
||||
};
|
||||
|
||||
struct power_domain_ops imx8_power_domain_ops = {
|
||||
static const struct power_domain_ops imx8_power_domain_ops = {
|
||||
.on = imx8_power_domain_on,
|
||||
.off = imx8_power_domain_off,
|
||||
.of_xlate = imx8_power_domain_of_xlate,
|
||||
|
||||
Reference in New Issue
Block a user