diff options
author | Dave Airlie <airlied@redhat.com> | 2008-08-04 14:53:14 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2008-08-04 14:53:14 +1000 |
commit | 129c8a11814741a997e3d039ab4be542d38e5ed8 (patch) | |
tree | ab8413c059cf4b726d34fc36a7dad09d2c4a5bf4 /linux-core | |
parent | 922f74f3c95fae39ffe8cf0659fa47e0bc354076 (diff) |
modesetting: pick_crtcs can't be static
Diffstat (limited to 'linux-core')
-rw-r--r-- | linux-core/drm_crtc_helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-core/drm_crtc_helper.c b/linux-core/drm_crtc_helper.c index ee1dc258..dc18dbb4 100644 --- a/linux-core/drm_crtc_helper.c +++ b/linux-core/drm_crtc_helper.c @@ -203,7 +203,7 @@ EXPORT_SYMBOL(drm_helper_disable_unused_functions); * LOCKING: * Caller must hold mode config lock. */ -static void drm_pick_crtcs (struct drm_device *dev) +void drm_pick_crtcs (struct drm_device *dev) { int c, o, assigned; struct drm_connector *connector, *connector_equal; |