diff options
author | Arnd Bergmann <arnd@arndb.de> | 2013-04-25 13:28:52 -0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2013-04-25 20:20:00 -0400 |
commit | d50289958076f7b2dd0f775341807da1e953f587 (patch) | |
tree | bfb12031ee3a2cd5c052a963899bdeea50fccdc9 | |
parent | a59e1ff3b83726f581ba7a421af97bd1589d9e2c (diff) |
drm: export drm_vm_open_locked
The EXYNOS DRM driver uses drm_vm_open_locked in its mmap() function,
and it can be built as a loadable module, which currently fails.
This exports the symbol from the DRM core to avoid
ERROR: "drm_vm_open_locked" [drivers/gpu/drm/exynos/exynosdrm.ko] undefined!
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: Inki Dae <inki.dae@samsung.com>
Cc: Joonyoung Shim <jy0922.shim@samsung.com>
Cc: Seung-Woo Kim <sw0312.kim@samsung.com>
Cc: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
-rw-r--r-- | drivers/gpu/drm/drm_vm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/drm_vm.c b/drivers/gpu/drm/drm_vm.c index db7bd292410b..1d4f7c9fe661 100644 --- a/drivers/gpu/drm/drm_vm.c +++ b/drivers/gpu/drm/drm_vm.c | |||
@@ -422,6 +422,7 @@ void drm_vm_open_locked(struct drm_device *dev, | |||
422 | list_add(&vma_entry->head, &dev->vmalist); | 422 | list_add(&vma_entry->head, &dev->vmalist); |
423 | } | 423 | } |
424 | } | 424 | } |
425 | EXPORT_SYMBOL_GPL(drm_vm_open_locked); | ||
425 | 426 | ||
426 | static void drm_vm_open(struct vm_area_struct *vma) | 427 | static void drm_vm_open(struct vm_area_struct *vma) |
427 | { | 428 | { |