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, | |||
117 | enum omap_channel channel, | 117 | enum omap_channel channel, |
118 | struct omap_dss_device *dst) | 118 | struct omap_dss_device *dst) |
119 | { | 119 | { |
120 | const struct dispc_ops *dispc_ops = dispc_get_ops(); | ||
121 | |||
122 | if (omap_crtc_output[channel]) | 120 | if (omap_crtc_output[channel]) |
123 | return -EINVAL; | 121 | return -EINVAL; |
124 | 122 | ||
125 | if ((dispc_ops->mgr_get_supported_outputs(channel) & dst->id) == 0) | 123 | if (!(priv->dispc_ops->mgr_get_supported_outputs(channel) & dst->id)) |
126 | return -EINVAL; | 124 | return -EINVAL; |
127 | 125 | ||
128 | omap_crtc_output[channel] = dst; | 126 | omap_crtc_output[channel] = dst; |