summaryrefslogtreecommitdiffstats
path: root/sys/dev/drm/r128_drv.c
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2005-12-20 22:44:36 +0000
committerjhb <jhb@FreeBSD.org>2005-12-20 22:44:36 +0000
commit1bbc1eaa87c45b5c1bc65557a95d2553b795c9b2 (patch)
treebf1b884ed397ca7de689d6b0df49906526678361 /sys/dev/drm/r128_drv.c
parent55a8727781ca978c1a0e2799e1c0e7b2eaa99957 (diff)
downloadFreeBSD-src-1bbc1eaa87c45b5c1bc65557a95d2553b795c9b2.zip
FreeBSD-src-1bbc1eaa87c45b5c1bc65557a95d2553b795c9b2.tar.gz
- Bump FreeBSD version for the hostb(4) and vgapci(4) drivers as well as
the addition of pci_find_extcap(). - Change the drm drivers to attach to vgapci. This is #ifdef'd so the code can be shared across branches. - Use pci_find_extcap() to look for AGP and PCIE capabilities in drm. - GC all the drmsub stuff for i810/i830/i915. The agp and drm devices are now both children of vgapci.
Diffstat (limited to 'sys/dev/drm/r128_drv.c')
-rw-r--r--sys/dev/drm/r128_drv.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/dev/drm/r128_drv.c b/sys/dev/drm/r128_drv.c
index e79dcbe..71b4259 100644
--- a/sys/dev/drm/r128_drv.c
+++ b/sys/dev/drm/r128_drv.c
@@ -109,7 +109,11 @@ static driver_t r128_driver = {
};
extern devclass_t drm_devclass;
+#if __FreeBSD_version >= 700010
+DRIVER_MODULE(r128, vgapci, r128_driver, drm_devclass, 0, 0);
+#else
DRIVER_MODULE(r128, pci, r128_driver, drm_devclass, 0, 0);
+#endif
MODULE_DEPEND(r128, drm, 1, 1, 1);
#elif defined(__NetBSD__) || defined(__OpenBSD__)
OpenPOWER on IntegriCloud