diff options
author | Owain Ainsworth <oga@cvs.openbsd.org> | 2008-06-11 09:33:02 +0000 |
---|---|---|
committer | Owain Ainsworth <oga@cvs.openbsd.org> | 2008-06-11 09:33:02 +0000 |
commit | b7812bf00b0f25ded04d672bea4560ecc82d0205 (patch) | |
tree | c7776caccabe950dc067b353a95a971f61d4b607 /sys/dev/pci/drm/radeon_drv.c | |
parent | 8927c8c78649edba50d3f9e787282537ef3b5be2 (diff) |
Update to DRM git as of a few days ago. This mostly affects the
card-specific files with a few minor changes elsewhere.
The main change to the OpenBSD specific stuff is the change to the irq
api due to the vblank rework.
4 more large bugs known, I have a fix for one.
Tested by many. prompted by deraadt@.
Diffstat (limited to 'sys/dev/pci/drm/radeon_drv.c')
-rw-r--r-- | sys/dev/pci/drm/radeon_drv.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/pci/drm/radeon_drv.c b/sys/dev/pci/drm/radeon_drv.c index 082a4844db5..1f1819ca383 100644 --- a/sys/dev/pci/drm/radeon_drv.c +++ b/sys/dev/pci/drm/radeon_drv.c @@ -55,7 +55,9 @@ radeon_configure(drm_device_t *dev) dev->driver.preclose = radeon_driver_preclose; dev->driver.postclose = radeon_driver_postclose; dev->driver.lastclose = radeon_driver_lastclose; - dev->driver.vblank_wait = radeon_driver_vblank_wait; + dev->driver.get_vblank_counter = radeon_get_vblank_counter; + dev->driver.enable_vblank = radeon_enable_vblank; + dev->driver.disable_vblank = radeon_disable_vblank; dev->driver.irq_preinstall = radeon_driver_irq_preinstall; dev->driver.irq_postinstall = radeon_driver_irq_postinstall; dev->driver.irq_uninstall = radeon_driver_irq_uninstall; |