diff options
| author | Alexandru Gheorghe <alexandru-cosmin.gheorghe@arm.com> | 2018-08-04 12:15:23 -0400 |
|---|---|---|
| committer | Alexandru Gheorghe <alexandru-cosmin.gheorghe@arm.com> | 2018-08-06 06:41:34 -0400 |
| commit | ffcf4626d3fed1587e69b90026334aa26ab13278 (patch) | |
| tree | 07c38421cca1e89bd14dd0f12c9f6d16ca55cbaf /drivers/gpu/drm/arm | |
| parent | 7f4de521001f4ea705d505c9f91f58d0f56a0e6d (diff) | |
drm: mali-dp: Use __drm_atomic_helper_plane_reset instead of copying the logic
A new helper function(__drm_atomic_helper_plane_reset) has been added
for linking a plane with its state and resetting the core
properties(alpha, rotation, etc.) to their default values.
Use that instead of duplicating the logic.
Reviewed-by: Ayan Kumar halder <ayan.halder@arm.com>
Acked-by: Liviu Dudau <liviu.dudau@arm.com>
Signed-off-by: Alexandru Gheorghe <alexandru-cosmin.gheorghe@arm.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20180804161530.12275-4-alexandru-cosmin.gheorghe@arm.com
Diffstat (limited to 'drivers/gpu/drm/arm')
| -rw-r--r-- | drivers/gpu/drm/arm/malidp_planes.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/gpu/drm/arm/malidp_planes.c b/drivers/gpu/drm/arm/malidp_planes.c index 29409a65d864..49c37f6dd63e 100644 --- a/drivers/gpu/drm/arm/malidp_planes.c +++ b/drivers/gpu/drm/arm/malidp_planes.c | |||
| @@ -78,11 +78,8 @@ static void malidp_plane_reset(struct drm_plane *plane) | |||
| 78 | kfree(state); | 78 | kfree(state); |
| 79 | plane->state = NULL; | 79 | plane->state = NULL; |
| 80 | state = kzalloc(sizeof(*state), GFP_KERNEL); | 80 | state = kzalloc(sizeof(*state), GFP_KERNEL); |
| 81 | if (state) { | 81 | if (state) |
| 82 | state->base.plane = plane; | 82 | __drm_atomic_helper_plane_reset(plane, &state->base); |
| 83 | state->base.rotation = DRM_MODE_ROTATE_0; | ||
| 84 | plane->state = &state->base; | ||
| 85 | } | ||
| 86 | } | 83 | } |
| 87 | 84 | ||
| 88 | static struct | 85 | static struct |
