- Timestamp:
- Nov 17, 2014 3:00:23 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/drm/vboxvideo_drm.c
r52017 r53340 53 53 54 54 #include <linux/module.h> 55 #include <linux/version.h> 55 56 #include <drm/drmP.h> 56 57 #include "vboxvideo_drm.h" … … 89 90 .release = drm_release, 90 91 .unlocked_ioctl = drm_ioctl, 92 # if LINUX_VERSION_CODE < KERNEL_VERSION(3, 18, 0) 93 /* This shouldn't be necessary even for old kernels as there is 94 * nothing sensible to mmap. But we play safe and keep it for 95 * legacy reasons. */ 91 96 .mmap = drm_mmap, 97 # endif 92 98 .poll = drm_poll, 93 99 };
Note:
See TracChangeset
for help on using the changeset viewer.