Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8b3ce873 authored by Liu Ying's avatar Liu Ying Committed by Philipp Zabel
Browse files

drm/imx: ipuv3-plane: Constify ipu_plane_funcs

parent c82b4d73
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -463,7 +463,7 @@ static void ipu_plane_destroy(struct drm_plane *plane)
	kfree(ipu_plane);
	kfree(ipu_plane);
}
}


static struct drm_plane_funcs ipu_plane_funcs = {
static const struct drm_plane_funcs ipu_plane_funcs = {
	.update_plane	= ipu_update_plane,
	.update_plane	= ipu_update_plane,
	.disable_plane	= ipu_disable_plane,
	.disable_plane	= ipu_disable_plane,
	.destroy	= ipu_plane_destroy,
	.destroy	= ipu_plane_destroy,