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-07-15 19:04:27 -07:00
2020-12-15 15:46:03 +02:00
2019-07-15 19:04:27 -07:00
2020-09-11 10:47:19 +02:00
2020-09-11 10:47:19 +02:00
2020-11-06 10:31:26 +01:00
2020-05-19 22:31:32 +01:00
2019-06-19 17:09:55 +02:00
2020-09-11 10:47:19 +02:00
2020-11-02 11:17:54 +01:00
2020-09-25 09:20:13 +02:00
2019-07-15 19:04:27 -07:00
2019-06-19 17:09:55 +02:00
2020-11-17 18:34:13 +01:00
2021-02-24 20:27:03 +01:00
2021-02-24 20:27:00 +01:00
2017-11-02 11:10:55 +01:00
2019-08-14 18:31:10 +02:00
2019-05-21 10:50:46 +02:00
2018-07-30 11:52:34 +01:00