Maxime Ripard
dec9202067
drm: Use the state pointer directly in planes atomic_check
...
Now that atomic_check takes the global atomic state as a parameter, we
don't need to go through the pointer in the plane state.
This was done using the following coccinelle script:
@ plane_atomic_func @
identifier helpers;
identifier func;
@@
static struct drm_plane_helper_funcs helpers = {
...,
.atomic_check = func,
...,
};
@@
identifier plane_atomic_func.func;
identifier plane, state;
identifier plane_state;
@@
func(struct drm_plane *plane, struct drm_atomic_state *state) {
...
- struct drm_plane_state *plane_state = drm_atomic_get_new_plane_state(state, plane);
<... when != plane_state
- plane_state->state
+ state
...>
}
@@
identifier plane_atomic_func.func;
identifier plane, state;
identifier plane_state;
@@
func(struct drm_plane *plane, struct drm_atomic_state *state) {
...
struct drm_plane_state *plane_state = drm_atomic_get_new_plane_state(state, plane);
<...
- plane_state->state
+ state
...>
}
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Maxime Ripard <maxime@cerno.tech>
Acked-by: Thomas Zimmermann <tzimmermann@suse.de>
Link: https://patchwork.freedesktop.org/patch/msgid/20210219120032.260676-5-maxime@cerno.tech
2021-02-24 20:27:03 +01:00
..
2019-05-28 09:39:08 +02:00
2019-12-10 10:09:01 +01:00
2020-11-02 12:37:49 +01:00
2019-05-21 11:28:45 +02:00
2020-11-17 14:47:08 +01:00
2020-07-03 10:12:29 +02:00
2020-11-20 16:41:10 +01:00
2019-08-09 12:06:14 +02:00
2020-08-23 17:36:59 -05:00
2019-12-10 10:09:01 +01:00
2021-02-24 20:27:03 +01:00
2018-11-13 13:27:51 +01:00
2021-02-24 20:27:03 +01:00
2019-05-21 11:28:45 +02:00
2020-01-08 13:51:56 +01:00
2019-12-10 10:08:45 +01:00
2020-07-24 08:48:05 +10:00
2020-11-17 18:34:14 +01:00
2020-05-05 10:19:33 +02:00
2020-05-27 14:31:42 +03:00
2019-05-21 11:28:45 +02:00
2020-11-17 18:34:14 +01:00
2020-03-10 10:51:24 +01:00
2020-07-02 10:36:56 +02:00
2019-12-10 10:09:38 +01:00
2019-08-22 17:54:05 +02:00
2019-07-17 12:47:57 +02:00