mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
drm/msm: dsi: Constify dsi_host_ops
The only usage of dsi_host_ops is to assign its address to the ops field in the mipi_dsi_host struct, which is a const pointer. Make it const to allow the compiler to put it in read-only memory. Signed-off-by: Rikard Falkeborn <rikard.falkeborn@gmail.com> Signed-off-by: Rob Clark <robdclark@chromium.org>
This commit is contained in:
parent
cc9014bf63
commit
8b6947a81e
1 changed files with 1 additions and 1 deletions
|
@ -1657,7 +1657,7 @@ static ssize_t dsi_host_transfer(struct mipi_dsi_host *host,
|
|||
return ret;
|
||||
}
|
||||
|
||||
static struct mipi_dsi_host_ops dsi_host_ops = {
|
||||
static const struct mipi_dsi_host_ops dsi_host_ops = {
|
||||
.attach = dsi_host_attach,
|
||||
.detach = dsi_host_detach,
|
||||
.transfer = dsi_host_transfer,
|
||||
|
|
Loading…
Add table
Reference in a new issue