diff options
author | Matt Roper <matthew.d.roper@intel.com> | 2014-04-01 18:22:34 -0400 |
---|---|---|
committer | Rob Clark <robdclark@gmail.com> | 2014-04-01 20:11:28 -0400 |
commit | af93629d1524dfff7df215b7de692f4de5ee855f (patch) | |
tree | 920f905fd15c581e8af4b8fdd7d3d108f703ebe1 /include/drm/drm_crtc.h | |
parent | 2b79dc13dc88c72c89fc9c4e4589bfc1139a441d (diff) |
drm: Make drm_crtc_check_viewport non-static
This function will be used by the universal plane helpers and may also
be useful for individual drivers.
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
Reviewed-by: Rob Clark <robdclark@gmail.com>
Diffstat (limited to 'include/drm/drm_crtc.h')
-rw-r--r-- | include/drm/drm_crtc.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/drm/drm_crtc.h b/include/drm/drm_crtc.h index 3894f85dcdff..2765a4eea4cc 100644 --- a/include/drm/drm_crtc.h +++ b/include/drm/drm_crtc.h | |||
@@ -882,6 +882,10 @@ extern int drm_plane_init(struct drm_device *dev, | |||
882 | bool priv); | 882 | bool priv); |
883 | extern void drm_plane_cleanup(struct drm_plane *plane); | 883 | extern void drm_plane_cleanup(struct drm_plane *plane); |
884 | extern void drm_plane_force_disable(struct drm_plane *plane); | 884 | extern void drm_plane_force_disable(struct drm_plane *plane); |
885 | extern int drm_crtc_check_viewport(const struct drm_crtc *crtc, | ||
886 | int x, int y, | ||
887 | const struct drm_display_mode *mode, | ||
888 | const struct drm_framebuffer *fb); | ||
885 | 889 | ||
886 | extern void drm_encoder_cleanup(struct drm_encoder *encoder); | 890 | extern void drm_encoder_cleanup(struct drm_encoder *encoder); |
887 | 891 | ||