On Mon, Jun 08, 2026 at 04:35:58PM +0200, Maxime Ripard wrote: > 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. > > Reviewed-by: Thomas Zimmermann <[email protected]> > Signed-off-by: Maxime Ripard <[email protected]> > --- > To: Liu Ying <[email protected]> > To: Frank Li <[email protected]> > To: Sascha Hauer <[email protected]> > Cc: Pengutronix Kernel Team <[email protected]> > Cc: Fabio Estevam <[email protected]> > Cc: [email protected] > Cc: [email protected] > Cc: [email protected] > --- > drivers/gpu/drm/bridge/imx/imx8qxp-ldb.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/bridge/imx/imx8qxp-ldb.c > b/drivers/gpu/drm/bridge/imx/imx8qxp-ldb.c > index a7906314ade1..1c71697a2083 100644 > --- a/drivers/gpu/drm/bridge/imx/imx8qxp-ldb.c > +++ b/drivers/gpu/drm/bridge/imx/imx8qxp-ldb.c > @@ -402,11 +402,11 @@ imx8qxp_ldb_bridge_mode_valid(struct drm_bridge *bridge, > > static const struct drm_bridge_funcs imx8qxp_ldb_bridge_funcs = { > .destroy = imx8qxp_ldb_bridge_destroy, > .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,
Nit: drop a tab after .atomic_create_state to align '=' characters vertically. Reviewed-by: Liu Ying <[email protected]> > .mode_valid = imx8qxp_ldb_bridge_mode_valid, > .attach = ldb_bridge_attach_helper, > .atomic_check = imx8qxp_ldb_bridge_atomic_check, > .mode_set = imx8qxp_ldb_bridge_mode_set, > .atomic_pre_enable = imx8qxp_ldb_bridge_atomic_pre_enable, > > -- > 2.54.0 > -- Regards, Liu Ying
