diff options
author | Rikard Falkeborn <rikard.falkeborn@gmail.com> | 2020-09-07 02:04:52 +0300 |
---|---|---|
committer | Sudeep Holla <sudeep.holla@arm.com> | 2020-09-07 14:43:27 +0300 |
commit | 3de7b83017bd93d521dc29f475f4c8fc5d61e518 (patch) | |
tree | 4cd848ea7797781f486af633124133e0c35e745b /drivers/firmware/arm_scmi/mailbox.c | |
parent | 82894c1d397f16c2208a35dbb1310559f31980bb (diff) | |
download | linux-3de7b83017bd93d521dc29f475f4c8fc5d61e518.tar.xz |
firmware: arm_scmi: Constify static scmi-ops
These are never modified, so make them const to allow the compiler to
put them in read-only memory.
Link: https://lore.kernel.org/r/20200906230452.33410-4-rikard.falkeborn@gmail.com
Signed-off-by: Rikard Falkeborn <rikard.falkeborn@gmail.com>
Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
Diffstat (limited to 'drivers/firmware/arm_scmi/mailbox.c')
-rw-r--r-- | drivers/firmware/arm_scmi/mailbox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/firmware/arm_scmi/mailbox.c b/drivers/firmware/arm_scmi/mailbox.c index 6998dc86b5ce..cc2de207fe10 100644 --- a/drivers/firmware/arm_scmi/mailbox.c +++ b/drivers/firmware/arm_scmi/mailbox.c @@ -181,7 +181,7 @@ mailbox_poll_done(struct scmi_chan_info *cinfo, struct scmi_xfer *xfer) return shmem_poll_done(smbox->shmem, xfer); } -static struct scmi_transport_ops scmi_mailbox_ops = { +static const struct scmi_transport_ops scmi_mailbox_ops = { .chan_available = mailbox_chan_available, .chan_setup = mailbox_chan_setup, .chan_free = mailbox_chan_free, |