27 lines
1.1 KiB
Diff
27 lines
1.1 KiB
Diff
From 9d766c97656ba1a8729e434ca6cd9b1e1172ee1f Mon Sep 17 00:00:00 2001
|
|
From: Maxime Ripard <maxime@cerno.tech>
|
|
Date: Thu, 18 Mar 2021 17:13:27 +0100
|
|
Subject: [PATCH] drm/vc4: plane: Remove redundant assignment
|
|
|
|
The vc4_plane_atomic_async_update function assigns twice in a row the
|
|
src_h field in the drm_plane_state structure to the same value. Remove
|
|
the second one.
|
|
|
|
Reviewed-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
|
|
Signed-off-by: Maxime Ripard <maxime@cerno.tech>
|
|
Link: https://patchwork.freedesktop.org/patch/msgid/20210318161328.1471556-2-maxime@cerno.tech
|
|
---
|
|
drivers/gpu/drm/vc4/vc4_plane.c | 1 -
|
|
1 file changed, 1 deletion(-)
|
|
|
|
--- a/drivers/gpu/drm/vc4/vc4_plane.c
|
|
+++ b/drivers/gpu/drm/vc4/vc4_plane.c
|
|
@@ -1226,7 +1226,6 @@ static void vc4_plane_atomic_async_updat
|
|
plane->state->src_y = state->src_y;
|
|
plane->state->src_w = state->src_w;
|
|
plane->state->src_h = state->src_h;
|
|
- plane->state->src_h = state->src_h;
|
|
plane->state->alpha = state->alpha;
|
|
plane->state->pixel_blend_mode = state->pixel_blend_mode;
|
|
plane->state->rotation = state->rotation;
|