diff options
| author | Maxime Ripard <mripard@kernel.org> | 2025-02-13 15:43:24 +0100 |
|---|---|---|
| committer | Maxime Ripard <mripard@kernel.org> | 2025-02-19 16:59:13 +0100 |
| commit | f82fe0d44913248877450584c27992c5b0f96ce7 (patch) | |
| tree | 36564aa18e77aaa34b361777f2881709edfff79d /include/drm/drm_bridge.h | |
| parent | f5f6a5bf01096fbb8d33d917de3df681374d2b52 (diff) | |
| download | lwn-f82fe0d44913248877450584c27992c5b0f96ce7.tar.gz lwn-f82fe0d44913248877450584c27992c5b0f96ce7.zip | |
drm/bridge: Pass full state to atomic_post_disable
It's pretty inconvenient to access the full atomic state from
drm_bridges, so let's change the atomic_post_disable hook prototype to
pass it directly.
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Reviewed-by: Douglas Anderson <dianders@chromium.org>
Tested-by: Douglas Anderson <dianders@chromium.org>
Link: https://lore.kernel.org/r/20250213-bridge-connector-v3-5-e71598f49c8f@kernel.org
Signed-off-by: Maxime Ripard <mripard@kernel.org>
Diffstat (limited to 'include/drm/drm_bridge.h')
| -rw-r--r-- | include/drm/drm_bridge.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/drm/drm_bridge.h b/include/drm/drm_bridge.h index 087752226bf9..d4c75d59fa12 100644 --- a/include/drm/drm_bridge.h +++ b/include/drm/drm_bridge.h @@ -361,7 +361,7 @@ struct drm_bridge_funcs { * The @atomic_post_disable callback is optional. */ void (*atomic_post_disable)(struct drm_bridge *bridge, - struct drm_bridge_state *old_bridge_state); + struct drm_atomic_state *state); /** * @atomic_duplicate_state: |
