Loading drivers/gpu/drm/drm_bridge.c +8 −4 Original line number Diff line number Diff line Loading @@ -186,6 +186,7 @@ void drm_bridge_disable(struct drm_bridge *bridge) drm_bridge_disable(bridge->next); if (bridge->funcs->disable) bridge->funcs->disable(bridge); } EXPORT_SYMBOL(drm_bridge_disable); Loading @@ -206,6 +207,7 @@ void drm_bridge_post_disable(struct drm_bridge *bridge) if (!bridge) return; if (bridge->funcs->post_disable) bridge->funcs->post_disable(bridge); drm_bridge_post_disable(bridge->next); Loading Loading @@ -256,6 +258,7 @@ void drm_bridge_pre_enable(struct drm_bridge *bridge) drm_bridge_pre_enable(bridge->next); if (bridge->funcs->pre_enable) bridge->funcs->pre_enable(bridge); } EXPORT_SYMBOL(drm_bridge_pre_enable); Loading @@ -276,6 +279,7 @@ void drm_bridge_enable(struct drm_bridge *bridge) if (!bridge) return; if (bridge->funcs->enable) bridge->funcs->enable(bridge); drm_bridge_enable(bridge->next); Loading include/drm/drm_crtc.h +8 −0 Original line number Diff line number Diff line Loading @@ -1581,6 +1581,8 @@ struct drm_bridge_funcs { * * The bridge can assume that the display pipe (i.e. clocks and timing * signals) feeding it is still running when this callback is called. * * The disable callback is optional. */ void (*disable)(struct drm_bridge *bridge); Loading @@ -1597,6 +1599,8 @@ struct drm_bridge_funcs { * The bridge must assume that the display pipe (i.e. clocks and timing * singals) feeding it is no longer running when this callback is * called. * * The post_disable callback is optional. */ void (*post_disable)(struct drm_bridge *bridge); Loading Loading @@ -1625,6 +1629,8 @@ struct drm_bridge_funcs { * will not yet be running when this callback is called. The bridge must * not enable the display link feeding the next bridge in the chain (if * there is one) when this callback is called. * * The pre_enable callback is optional. */ void (*pre_enable)(struct drm_bridge *bridge); Loading @@ -1642,6 +1648,8 @@ struct drm_bridge_funcs { * signals) feeding it is running when this callback is called. This * callback must enable the display link feeding the next bridge in the * chain if there is one. * * The enable callback is optional. */ void (*enable)(struct drm_bridge *bridge); }; Loading Loading
drivers/gpu/drm/drm_bridge.c +8 −4 Original line number Diff line number Diff line Loading @@ -186,6 +186,7 @@ void drm_bridge_disable(struct drm_bridge *bridge) drm_bridge_disable(bridge->next); if (bridge->funcs->disable) bridge->funcs->disable(bridge); } EXPORT_SYMBOL(drm_bridge_disable); Loading @@ -206,6 +207,7 @@ void drm_bridge_post_disable(struct drm_bridge *bridge) if (!bridge) return; if (bridge->funcs->post_disable) bridge->funcs->post_disable(bridge); drm_bridge_post_disable(bridge->next); Loading Loading @@ -256,6 +258,7 @@ void drm_bridge_pre_enable(struct drm_bridge *bridge) drm_bridge_pre_enable(bridge->next); if (bridge->funcs->pre_enable) bridge->funcs->pre_enable(bridge); } EXPORT_SYMBOL(drm_bridge_pre_enable); Loading @@ -276,6 +279,7 @@ void drm_bridge_enable(struct drm_bridge *bridge) if (!bridge) return; if (bridge->funcs->enable) bridge->funcs->enable(bridge); drm_bridge_enable(bridge->next); Loading
include/drm/drm_crtc.h +8 −0 Original line number Diff line number Diff line Loading @@ -1581,6 +1581,8 @@ struct drm_bridge_funcs { * * The bridge can assume that the display pipe (i.e. clocks and timing * signals) feeding it is still running when this callback is called. * * The disable callback is optional. */ void (*disable)(struct drm_bridge *bridge); Loading @@ -1597,6 +1599,8 @@ struct drm_bridge_funcs { * The bridge must assume that the display pipe (i.e. clocks and timing * singals) feeding it is no longer running when this callback is * called. * * The post_disable callback is optional. */ void (*post_disable)(struct drm_bridge *bridge); Loading Loading @@ -1625,6 +1629,8 @@ struct drm_bridge_funcs { * will not yet be running when this callback is called. The bridge must * not enable the display link feeding the next bridge in the chain (if * there is one) when this callback is called. * * The pre_enable callback is optional. */ void (*pre_enable)(struct drm_bridge *bridge); Loading @@ -1642,6 +1648,8 @@ struct drm_bridge_funcs { * signals) feeding it is running when this callback is called. This * callback must enable the display link feeding the next bridge in the * chain if there is one. * * The enable callback is optional. */ void (*enable)(struct drm_bridge *bridge); }; Loading