mirror of https://gitee.com/openkylin/linux.git
drm: Move drm_vm_open_locked into drm_internal.h
Leftover from my previous header cleanup. This depends upon the patch to rework exynos mmap support, otherwise it'll break exynos. Signed-off-by: Daniel Vetter <daniel.vetter@intel.com> Reviewed-by: David Herrmann <dh.herrmann@gmail.com> Acked-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
bfbf3c851c
commit
884d9f05eb
|
@ -37,6 +37,7 @@ int drm_irq_by_busid(struct drm_device *dev, void *data,
|
||||||
|
|
||||||
/* drm_vm.c */
|
/* drm_vm.c */
|
||||||
int drm_vma_info(struct seq_file *m, void *data);
|
int drm_vma_info(struct seq_file *m, void *data);
|
||||||
|
void drm_vm_open_locked(struct drm_device *dev, struct vm_area_struct *vma);
|
||||||
void drm_vm_close_locked(struct drm_device *dev, struct vm_area_struct *vma);
|
void drm_vm_close_locked(struct drm_device *dev, struct vm_area_struct *vma);
|
||||||
|
|
||||||
/* drm_prime.c */
|
/* drm_prime.c */
|
||||||
|
|
|
@ -417,7 +417,6 @@ void drm_vm_open_locked(struct drm_device *dev,
|
||||||
list_add(&vma_entry->head, &dev->vmalist);
|
list_add(&vma_entry->head, &dev->vmalist);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(drm_vm_open_locked);
|
|
||||||
|
|
||||||
static void drm_vm_open(struct vm_area_struct *vma)
|
static void drm_vm_open(struct vm_area_struct *vma)
|
||||||
{
|
{
|
||||||
|
|
|
@ -961,7 +961,6 @@ extern ssize_t drm_read(struct file *filp, char __user *buffer,
|
||||||
extern int drm_release(struct inode *inode, struct file *filp);
|
extern int drm_release(struct inode *inode, struct file *filp);
|
||||||
|
|
||||||
/* Mapping support (drm_vm.h) */
|
/* Mapping support (drm_vm.h) */
|
||||||
extern void drm_vm_open_locked(struct drm_device *dev, struct vm_area_struct *vma);
|
|
||||||
extern unsigned int drm_poll(struct file *filp, struct poll_table_struct *wait);
|
extern unsigned int drm_poll(struct file *filp, struct poll_table_struct *wait);
|
||||||
|
|
||||||
/* Misc. IOCTL support (drm_ioctl.c) */
|
/* Misc. IOCTL support (drm_ioctl.c) */
|
||||||
|
|
Loading…
Reference in New Issue