The drm_bridge_funcs.atomic_reset callback and its drm_atomic_helper_bridge_reset() helper are deprecated.
Switch to the atomic_create_state callback and its drm_atomic_helper_bridge_create_state() counterpart. Signed-off-by: Maxime Ripard <[email protected]> --- To: Yannick Fertre <[email protected]> To: Raphael Gallais-Pou <[email protected]> To: Philippe Cornu <[email protected]> To: Maxime Coquelin <[email protected]> To: Alexandre Torgue <[email protected]> Cc: [email protected] Cc: [email protected] Cc: [email protected] --- drivers/gpu/drm/stm/lvds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/stm/lvds.c b/drivers/gpu/drm/stm/lvds.c index 50a878688e47..90a44e722057 100644 --- a/drivers/gpu/drm/stm/lvds.c +++ b/drivers/gpu/drm/stm/lvds.c @@ -1036,11 +1036,11 @@ static const struct drm_bridge_funcs lvds_bridge_funcs = { .attach = lvds_attach, .atomic_enable = lvds_atomic_enable, .atomic_disable = lvds_atomic_disable, .atomic_duplicate_state = drm_atomic_helper_bridge_duplicate_state, .atomic_destroy_state = drm_atomic_helper_bridge_destroy_state, - .atomic_reset = drm_atomic_helper_bridge_reset, + .atomic_create_state = drm_atomic_helper_bridge_create_state, }; static int lvds_probe(struct platform_device *pdev) { struct device_node *port1, *port2, *remote; -- 2.54.0
