diff options
author | adrian <adrian@FreeBSD.org> | 2015-10-04 07:45:36 +0000 |
---|---|---|
committer | adrian <adrian@FreeBSD.org> | 2015-10-04 07:45:36 +0000 |
commit | 63f765030dc055a1eef961f7f5741217efb534a9 (patch) | |
tree | 87c1942bf24a957c46e7c666f3ec5b23bca341f5 /sys/dev/drm2/drmP.h | |
parent | 15bc65f144a8e7501d5b41594aa7436b28858d6f (diff) | |
download | FreeBSD-src-63f765030dc055a1eef961f7f5741217efb534a9.zip FreeBSD-src-63f765030dc055a1eef961f7f5741217efb534a9.tar.gz |
drm2: a few minor fixes after r280183
* Remove obsolete drm_agp_*_memory() prototypes.
* Fix comment in drm_fops.c (outisde -> outside).
* Fix some formatting issues in drm_stub.c (spaces -> tabs).
* Add missing case statement (gen == 3) in intel_gpu_reset().
* Restore pci_enable_busmaster() call in the init path (fixes gpu hang on i945GM).
* Replace M_WAITOK with M_NOWAIT when the return value of malloc is checked (may be incorrect).
Submitted by: <s3erios@gmail.com>
Reviewed by: dumbbell
Approved by: dumbbell
Differential Revision: https://reviews.freebsd.org/D3413
Diffstat (limited to 'sys/dev/drm2/drmP.h')
-rw-r--r-- | sys/dev/drm2/drmP.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/sys/dev/drm2/drmP.h b/sys/dev/drm2/drmP.h index 32c3fcd..b3633c3 100644 --- a/sys/dev/drm2/drmP.h +++ b/sys/dev/drm2/drmP.h @@ -1782,12 +1782,6 @@ void drm_driver_irq_preinstall(struct drm_device *dev); void drm_driver_irq_postinstall(struct drm_device *dev); void drm_driver_irq_uninstall(struct drm_device *dev); -/* AGP/PCI Express/GART support (drm_agpsupport.c) */ -void *drm_agp_allocate_memory(size_t pages, u32 type); -int drm_agp_free_memory(void *handle); -int drm_agp_bind_memory(void *handle, off_t start); -int drm_agp_unbind_memory(void *handle); - /* sysctl support (drm_sysctl.h) */ extern int drm_sysctl_init(struct drm_device *dev); extern int drm_sysctl_cleanup(struct drm_device *dev); |