diff options
Diffstat (limited to 'drivers/gpu/drm/omapdrm/omap_crtc.c')
| -rw-r--r-- | drivers/gpu/drm/omapdrm/omap_crtc.c | 4 | 
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/gpu/drm/omapdrm/omap_crtc.c b/drivers/gpu/drm/omapdrm/omap_crtc.c index 61d8d17a4243..ffe4f698d291 100644 --- a/drivers/gpu/drm/omapdrm/omap_crtc.c +++ b/drivers/gpu/drm/omapdrm/omap_crtc.c @@ -117,12 +117,10 @@ static int omap_crtc_dss_connect(struct omap_drm_private *priv,  		enum omap_channel channel,  		struct omap_dss_device *dst)  { -	const struct dispc_ops *dispc_ops = dispc_get_ops(); -  	if (omap_crtc_output[channel])  		return -EINVAL; -	if ((dispc_ops->mgr_get_supported_outputs(channel) & dst->id) == 0) +	if (!(priv->dispc_ops->mgr_get_supported_outputs(channel) & dst->id))  		return -EINVAL;  	omap_crtc_output[channel] = dst;  | 
