x86: apl: Use const for driver operations

Update these declarations to const to ensure that the data ends up in the
rodata section.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass 2020-12-23 08:11:26 -07:00
parent 7d637c122d
commit 52d2e9c142
2 changed files with 2 additions and 2 deletions

View File

@ -205,7 +205,7 @@ static int apl_pmc_probe(struct udevice *dev)
return 0;
}
static struct acpi_pmc_ops apl_pmc_ops = {
static const struct acpi_pmc_ops apl_pmc_ops = {
.init = apl_pmc_fill_power_state,
.prev_sleep_state = apl_prev_sleep_state,
.disable_tco = apl_disable_tco,

View File

@ -180,7 +180,7 @@ static int p2sb_child_post_bind(struct udevice *dev)
return 0;
}
struct p2sb_ops p2sb_ops = {
static const struct p2sb_ops p2sb_ops = {
.set_hide = intel_p2sb_set_hide,
};