Lines Matching refs:bridge
348 static void sti_hda_disable(struct drm_bridge *bridge) in sti_hda_disable() argument
350 struct sti_hda *hda = bridge->driver_private; in sti_hda_disable()
373 static void sti_hda_pre_enable(struct drm_bridge *bridge) in sti_hda_pre_enable() argument
375 struct sti_hda *hda = bridge->driver_private; in sti_hda_pre_enable()
462 static void sti_hda_set_mode(struct drm_bridge *bridge, in sti_hda_set_mode() argument
466 struct sti_hda *hda = bridge->driver_private; in sti_hda_set_mode()
507 static void sti_hda_bridge_nope(struct drm_bridge *bridge) in sti_hda_bridge_nope() argument
643 struct drm_bridge *bridge; in sti_hda_bind() local
659 bridge = devm_kzalloc(dev, sizeof(*bridge), GFP_KERNEL); in sti_hda_bind()
660 if (!bridge) in sti_hda_bind()
663 bridge->driver_private = hda; in sti_hda_bind()
664 bridge->funcs = &sti_hda_bridge_funcs; in sti_hda_bind()
665 drm_bridge_attach(drm_dev, bridge); in sti_hda_bind()
667 encoder->bridge = bridge; in sti_hda_bind()