diff options
author | Rob Clark <robdclark@gmail.com> | 2015-03-27 13:01:52 -0400 |
---|---|---|
committer | Rob Clark <robdclark@gmail.com> | 2015-04-01 19:29:37 -0400 |
commit | 81ddd1bc5cff2df619559860f2481393ba74e3a0 (patch) | |
tree | 13d74a04fe60a20e62c94babb571162392ab82c3 /drivers/gpu/drm/drm_crtc.c | |
parent | 531db9ff3d3aabc36772bb02a9c636e398d0f21c (diff) |
drm: export tile-group functions
Normally these are called from within drm core, from the EDID parsing
code. But for dual-dsi in some drivers (at least drm/msm) we need to
call these from the driver. So they should be exported.
Signed-off-by: Rob Clark <robdclark@gmail.com>
Acked-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/drm_crtc.c')
-rw-r--r-- | drivers/gpu/drm/drm_crtc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/gpu/drm/drm_crtc.c b/drivers/gpu/drm/drm_crtc.c index d576a4dea64f..b3989e23195e 100644 --- a/drivers/gpu/drm/drm_crtc.c +++ b/drivers/gpu/drm/drm_crtc.c | |||
@@ -5599,6 +5599,7 @@ struct drm_tile_group *drm_mode_get_tile_group(struct drm_device *dev, | |||
5599 | mutex_unlock(&dev->mode_config.idr_mutex); | 5599 | mutex_unlock(&dev->mode_config.idr_mutex); |
5600 | return NULL; | 5600 | return NULL; |
5601 | } | 5601 | } |
5602 | EXPORT_SYMBOL(drm_mode_get_tile_group); | ||
5602 | 5603 | ||
5603 | /** | 5604 | /** |
5604 | * drm_mode_create_tile_group - create a tile group from a displayid description | 5605 | * drm_mode_create_tile_group - create a tile group from a displayid description |
@@ -5637,3 +5638,4 @@ struct drm_tile_group *drm_mode_create_tile_group(struct drm_device *dev, | |||
5637 | mutex_unlock(&dev->mode_config.idr_mutex); | 5638 | mutex_unlock(&dev->mode_config.idr_mutex); |
5638 | return tg; | 5639 | return tg; |
5639 | } | 5640 | } |
5641 | EXPORT_SYMBOL(drm_mode_create_tile_group); | ||