Commit b5452838 authored by Julia Lawall's avatar Julia Lawall Committed by Jassi Brar

mailbox: hi3660: constify mbox_chan_ops structure

The mbox_chan_ops structure can be const as it is only stored in the
ops field of an mbox_controller structure and this field is const.

Done with the help of Coccinelle.
Signed-off-by: default avatarJulia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: default avatarJassi Brar <jaswinder.singh@linaro.org>
parent f5d58277
...@@ -206,7 +206,7 @@ static int hi3660_mbox_send_data(struct mbox_chan *chan, void *msg) ...@@ -206,7 +206,7 @@ static int hi3660_mbox_send_data(struct mbox_chan *chan, void *msg)
return 0; return 0;
} }
static struct mbox_chan_ops hi3660_mbox_ops = { static const struct mbox_chan_ops hi3660_mbox_ops = {
.startup = hi3660_mbox_startup, .startup = hi3660_mbox_startup,
.send_data = hi3660_mbox_send_data, .send_data = hi3660_mbox_send_data,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment