mirror of https://gitee.com/openkylin/linux.git
drm/i915: Remove get_existing_crtc_state
get_existing_crtc_state is currently unused, get rid of it. Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20180409124656.39886-2-maarten.lankhorst@linux.intel.com Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
This commit is contained in:
parent
cd27d88fba
commit
70c7183fbe
|
@ -2095,20 +2095,6 @@ intel_atomic_get_crtc_state(struct drm_atomic_state *state,
|
||||||
return to_intel_crtc_state(crtc_state);
|
return to_intel_crtc_state(crtc_state);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline struct intel_crtc_state *
|
|
||||||
intel_atomic_get_existing_crtc_state(struct drm_atomic_state *state,
|
|
||||||
struct intel_crtc *crtc)
|
|
||||||
{
|
|
||||||
struct drm_crtc_state *crtc_state;
|
|
||||||
|
|
||||||
crtc_state = drm_atomic_get_existing_crtc_state(state, &crtc->base);
|
|
||||||
|
|
||||||
if (crtc_state)
|
|
||||||
return to_intel_crtc_state(crtc_state);
|
|
||||||
else
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
int intel_atomic_setup_scalers(struct drm_i915_private *dev_priv,
|
int intel_atomic_setup_scalers(struct drm_i915_private *dev_priv,
|
||||||
struct intel_crtc *intel_crtc,
|
struct intel_crtc *intel_crtc,
|
||||||
struct intel_crtc_state *crtc_state);
|
struct intel_crtc_state *crtc_state);
|
||||||
|
|
Loading…
Reference in New Issue