mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2026-01-06 19:02:48 +00:00
Most drivers call the argument to the plane atomic_check hook simply
state, which is going to conflict with the global atomic state in a
later rework. Let's rename it to new_plane_state (or new_state depending
on the convention used in the driver).
This was done using the coccinelle script below, and built tested:
@ plane_atomic_func @
identifier helpers;
identifier func;
@@
static const struct drm_plane_helper_funcs helpers = {
.atomic_check = func,
};
@ has_old_state @
identifier plane_atomic_func.func;
identifier plane;
expression e;
symbol old_state;
symbol state;
@@
func(struct drm_plane *plane, struct drm_plane_state *state)
{
...
struct drm_plane_state *old_state = e;
...
}
@ depends on has_old_state @
identifier plane_atomic_func.func;
identifier plane;
symbol old_state;
@@
func(struct drm_plane *plane,
- struct drm_plane_state *state
+ struct drm_plane_state *new_state
)
{
<+...
- state
+ new_state
...+>
}
@ has_state @
identifier plane_atomic_func.func;
identifier plane;
symbol state;
@@
func(struct drm_plane *plane, struct drm_plane_state *state)
{
...
}
@ depends on has_state @
identifier plane_atomic_func.func;
identifier plane;
symbol old_state;
@@
func(struct drm_plane *plane,
- struct drm_plane_state *state
+ struct drm_plane_state *new_plane_state
)
{
<+...
- state
+ new_plane_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-2-maxime@cerno.tech
|
||
|---|---|---|
| .. | ||
| Kconfig | ||
| Makefile | ||
| rcar_cmm.c | ||
| rcar_cmm.h | ||
| rcar_du_crtc.c | ||
| rcar_du_crtc.h | ||
| rcar_du_drv.c | ||
| rcar_du_drv.h | ||
| rcar_du_encoder.c | ||
| rcar_du_encoder.h | ||
| rcar_du_group.c | ||
| rcar_du_group.h | ||
| rcar_du_kms.c | ||
| rcar_du_kms.h | ||
| rcar_du_of_lvds_r8a7790.dts | ||
| rcar_du_of_lvds_r8a7791.dts | ||
| rcar_du_of_lvds_r8a7793.dts | ||
| rcar_du_of_lvds_r8a7795.dts | ||
| rcar_du_of_lvds_r8a7796.dts | ||
| rcar_du_of.c | ||
| rcar_du_of.h | ||
| rcar_du_plane.c | ||
| rcar_du_plane.h | ||
| rcar_du_regs.h | ||
| rcar_du_vsp.c | ||
| rcar_du_vsp.h | ||
| rcar_du_writeback.c | ||
| rcar_du_writeback.h | ||
| rcar_dw_hdmi.c | ||
| rcar_lvds_regs.h | ||
| rcar_lvds.c | ||
| rcar_lvds.h | ||