projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
098b338
)
drm/sun4i: backend: Set a default zpos in our reset hook
author
Maxime Ripard
<
[email protected]
>
Sun, 17 Dec 2017 16:32:21 +0000
(17:32 +0100)
committer
Maxime Ripard
<
[email protected]
>
Mon, 29 Jan 2018 13:02:39 +0000
(14:02 +0100)
The plane state zpos value will be set only if there's an existing state
attached to the plane when creating the property.
However, this is not the case during the probe, and we therefore need to
put our default value in our reset hook.
Acked-by: Chen-Yu Tsai <
[email protected]
>
Signed-off-by: Maxime Ripard <
[email protected]
>
Link:
https://patchwork.freedesktop.org/patch/msgid/b6a183234f0ad5a9a58c780c9cabbe29cbf40888.1516617243.git-series.maxime.ripard@free-electrons.com
drivers/gpu/drm/sun4i/sun4i_layer.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/sun4i/sun4i_layer.c
b/drivers/gpu/drm/sun4i/sun4i_layer.c
index c448cb6b9fa998ff705d1eb84f4a585a263c2d8b..03549646528a8441e75ac2309781afba07f0bf31 100644
(file)
--- a/
drivers/gpu/drm/sun4i/sun4i_layer.c
+++ b/
drivers/gpu/drm/sun4i/sun4i_layer.c
@@
-28,6
+28,7
@@
struct sun4i_plane_desc {
static void sun4i_backend_layer_reset(struct drm_plane *plane)
{
+ struct sun4i_layer *layer = plane_to_sun4i_layer(plane);
struct sun4i_layer_state *state;
if (plane->state) {
@@
-43,6
+44,7
@@
static void sun4i_backend_layer_reset(struct drm_plane *plane)
if (state) {
plane->state = &state->state;
plane->state->plane = plane;
+ plane->state->zpos = layer->id;
}
}