diff options
author | Dave Airlie <airlied@linux.ie> | 2004-08-30 11:34:51 +0000 |
---|---|---|
committer | Dave Airlie <airlied@linux.ie> | 2004-08-30 11:34:51 +0000 |
commit | da6b44849763fac5ccb7d7511128454c6c2a92c7 (patch) | |
tree | eeacf7b240241350c040dc4751f4a4c3d9d52502 /linux/i810_dma.c | |
parent | 7809efc8c32520e6b25c143ee3276edbf534ed14 (diff) |
implement drm_core_check_feature and use it .. looks lots nicer
Diffstat (limited to 'linux/i810_dma.c')
-rw-r--r-- | linux/i810_dma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/i810_dma.c b/linux/i810_dma.c index 51dddb3d..fe8f5c1d 100644 --- a/linux/i810_dma.c +++ b/linux/i810_dma.c @@ -242,7 +242,7 @@ int i810_dma_cleanup(drm_device_t *dev) * may not have been called from userspace and after dev_private * is freed, it's too late. */ - if ( (dev->driver_features & DRIVER_HAVE_IRQ) && dev->irq_enabled ) + if ( drm_core_check_feature(dev, DRIVER_HAVE_IRQ) && dev->irq_enabled ) DRM(irq_uninstall)(dev); if (dev->dev_private) { |