drm/atomic: Extract needs_modeset function
We use the same check already in the atomic core, so might as well make this official. And it's also reused in e.g. i915. Motivated by Maarten's idea to extract a connector_changed state out of mode_changed. Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> Reviewed-By: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
This commit is contained in:
@@ -163,5 +163,11 @@ int __must_check drm_atomic_async_commit(struct drm_atomic_state *state);
|
||||
(plane_state) = (state)->plane_states[__i], 1); \
|
||||
(__i)++) \
|
||||
if (plane_state)
|
||||
static inline bool
|
||||
drm_atomic_crtc_needs_modeset(struct drm_crtc_state *state)
|
||||
{
|
||||
return state->mode_changed || state->active_changed;
|
||||
}
|
||||
|
||||
|
||||
#endif /* DRM_ATOMIC_H_ */
|
||||
|
||||
Reference in New Issue
Block a user