diff options
| author | Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> | 2018-01-17 23:15:18 +0200 | 
|---|---|---|
| committer | Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> | 2021-01-05 07:20:21 +0200 | 
| commit | 739fac48b6780a6b576382e179381b185ed2252d (patch) | |
| tree | d2f0a0370b7d5ed8f6829214fe199c5c2b724e8a /drivers/gpu/drm/sti | |
| parent | 506c34ca7f895df1ceae69bfd47936f83dee85c7 (diff) | |
| download | linux-739fac48b6780a6b576382e179381b185ed2252d.tar.bz2 | |
drm: sti: Remove unnecessary drm_plane_cleanup() wrapper
Use the drm_plane_cleanup() function directly as the drm_plane_funcs
.destroy() handler without creating an unnecessary wrapper around it.
Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'drivers/gpu/drm/sti')
| -rw-r--r-- | drivers/gpu/drm/sti/sti_cursor.c | 9 | ||||
| -rw-r--r-- | drivers/gpu/drm/sti/sti_gdp.c | 9 | ||||
| -rw-r--r-- | drivers/gpu/drm/sti/sti_hqvdp.c | 9 | 
3 files changed, 3 insertions, 24 deletions
| diff --git a/drivers/gpu/drm/sti/sti_cursor.c b/drivers/gpu/drm/sti/sti_cursor.c index a98057431023..7476301d7142 100644 --- a/drivers/gpu/drm/sti/sti_cursor.c +++ b/drivers/gpu/drm/sti/sti_cursor.c @@ -330,13 +330,6 @@ static const struct drm_plane_helper_funcs sti_cursor_helpers_funcs = {  	.atomic_disable = sti_cursor_atomic_disable,  }; -static void sti_cursor_destroy(struct drm_plane *drm_plane) -{ -	DRM_DEBUG_DRIVER("\n"); - -	drm_plane_cleanup(drm_plane); -} -  static int sti_cursor_late_register(struct drm_plane *drm_plane)  {  	struct sti_plane *plane = to_sti_plane(drm_plane); @@ -350,7 +343,7 @@ static int sti_cursor_late_register(struct drm_plane *drm_plane)  static const struct drm_plane_funcs sti_cursor_plane_helpers_funcs = {  	.update_plane = drm_atomic_helper_update_plane,  	.disable_plane = drm_atomic_helper_disable_plane, -	.destroy = sti_cursor_destroy, +	.destroy = drm_plane_cleanup,  	.reset = sti_plane_reset,  	.atomic_duplicate_state = drm_atomic_helper_plane_duplicate_state,  	.atomic_destroy_state = drm_atomic_helper_plane_destroy_state, diff --git a/drivers/gpu/drm/sti/sti_gdp.c b/drivers/gpu/drm/sti/sti_gdp.c index 2d5a2b5b78b8..2f4a34f14d33 100644 --- a/drivers/gpu/drm/sti/sti_gdp.c +++ b/drivers/gpu/drm/sti/sti_gdp.c @@ -884,13 +884,6 @@ static const struct drm_plane_helper_funcs sti_gdp_helpers_funcs = {  	.atomic_disable = sti_gdp_atomic_disable,  }; -static void sti_gdp_destroy(struct drm_plane *drm_plane) -{ -	DRM_DEBUG_DRIVER("\n"); - -	drm_plane_cleanup(drm_plane); -} -  static int sti_gdp_late_register(struct drm_plane *drm_plane)  {  	struct sti_plane *plane = to_sti_plane(drm_plane); @@ -902,7 +895,7 @@ static int sti_gdp_late_register(struct drm_plane *drm_plane)  static const struct drm_plane_funcs sti_gdp_plane_helpers_funcs = {  	.update_plane = drm_atomic_helper_update_plane,  	.disable_plane = drm_atomic_helper_disable_plane, -	.destroy = sti_gdp_destroy, +	.destroy = drm_plane_cleanup,  	.reset = sti_plane_reset,  	.atomic_duplicate_state = drm_atomic_helper_plane_duplicate_state,  	.atomic_destroy_state = drm_atomic_helper_plane_destroy_state, diff --git a/drivers/gpu/drm/sti/sti_hqvdp.c b/drivers/gpu/drm/sti/sti_hqvdp.c index 5a4e12194a77..62f824cd5f21 100644 --- a/drivers/gpu/drm/sti/sti_hqvdp.c +++ b/drivers/gpu/drm/sti/sti_hqvdp.c @@ -1262,13 +1262,6 @@ static const struct drm_plane_helper_funcs sti_hqvdp_helpers_funcs = {  	.atomic_disable = sti_hqvdp_atomic_disable,  }; -static void sti_hqvdp_destroy(struct drm_plane *drm_plane) -{ -	DRM_DEBUG_DRIVER("\n"); - -	drm_plane_cleanup(drm_plane); -} -  static int sti_hqvdp_late_register(struct drm_plane *drm_plane)  {  	struct sti_plane *plane = to_sti_plane(drm_plane); @@ -1282,7 +1275,7 @@ static int sti_hqvdp_late_register(struct drm_plane *drm_plane)  static const struct drm_plane_funcs sti_hqvdp_plane_helpers_funcs = {  	.update_plane = drm_atomic_helper_update_plane,  	.disable_plane = drm_atomic_helper_disable_plane, -	.destroy = sti_hqvdp_destroy, +	.destroy = drm_plane_cleanup,  	.reset = sti_plane_reset,  	.atomic_duplicate_state = drm_atomic_helper_plane_duplicate_state,  	.atomic_destroy_state = drm_atomic_helper_plane_destroy_state, |