diff options
| author | Marek Vasut <[email protected]> | 2026-05-08 00:07:48 +0200 |
|---|---|---|
| committer | Peng Fan <[email protected]> | 2026-05-15 11:45:40 +0800 |
| commit | b487d05633a6614da425f9c3b7707e7d5fee97de (patch) | |
| tree | 1bfc9dcd30242d71595132e72d81db5b9dd13410 /drivers | |
| parent | 731a875ae768a04282adf79a7144782ed12c04d6 (diff) | |
mmc: bootstd: 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 <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Reviewed-by: Peng Fan <[email protected]>
Signed-off-by: Peng Fan <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/mmc/mmc_bootdev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/mmc_bootdev.c b/drivers/mmc/mmc_bootdev.c index 5a1688b75d0..b382521fdeb 100644 --- a/drivers/mmc/mmc_bootdev.c +++ b/drivers/mmc/mmc_bootdev.c @@ -19,7 +19,7 @@ static int mmc_bootdev_bind(struct udevice *dev) return 0; } -struct bootdev_ops mmc_bootdev_ops = { +static const struct bootdev_ops mmc_bootdev_ops = { }; static const struct udevice_id mmc_bootdev_ids[] = { |
