[PATCH 07/10] drm: Store new plane state in a variable for atomic_update and disable

2021-01-16 Thread Maxime Ripard
In order to store the new plane state in a subsequent helper, let's move the plane->state dereferences into a variable. This was done using the following coccinelle script, plus some hand changes for vmwgfx: @ plane_atomic_func @ identifier helpers; identifier func; @@ ( static const struct drm

Re: [PATCH 07/10] drm: Store new plane state in a variable for atomic_update and disable

2021-01-15 Thread Laurent Pinchart
Hi Maxime, Thank you for the patch. On Fri, Jan 15, 2021 at 01:56:59PM +0100, Maxime Ripard wrote: > In order to store the new plane state in a subsequent helper, let's move > the plane->state dereferences into a variable. > > This was done using the following coccinelle script, plus some hand >