diff options
author | Dave Airlie <airlied@linux.ie> | 2004-02-10 12:03:12 +0000 |
---|---|---|
committer | Dave Airlie <airlied@linux.ie> | 2004-02-10 12:03:12 +0000 |
commit | 56c6532199bb42eae2eb612ed9c3b7ebdccc08d9 (patch) | |
tree | 449d2945a9ca756a62ae4df3da88d130b7ad8386 | |
parent | 66ac2e780f10f040dd824106c77173282e702875 (diff) |
change to irq_handler
-rw-r--r-- | shared-core/mach64_irq.c | 4 | ||||
-rw-r--r-- | shared/mach64_irq.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/shared-core/mach64_irq.c b/shared-core/mach64_irq.c index e4d300f3..5ae0178c 100644 --- a/shared-core/mach64_irq.c +++ b/shared-core/mach64_irq.c @@ -41,9 +41,9 @@ #include "mach64_drv.h" #if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,1) -void DRM(dma_service)( DRM_IRQ_ARGS ) +void DRM(irq_handler)( DRM_IRQ_ARGS ) #else -irqreturn_t DRM(dma_service)( DRM_IRQ_ARGS ) +irqreturn_t DRM(irq_handler)( DRM_IRQ_ARGS ) #endif { drm_device_t *dev = (drm_device_t *) arg; diff --git a/shared/mach64_irq.c b/shared/mach64_irq.c index e4d300f3..5ae0178c 100644 --- a/shared/mach64_irq.c +++ b/shared/mach64_irq.c @@ -41,9 +41,9 @@ #include "mach64_drv.h" #if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,1) -void DRM(dma_service)( DRM_IRQ_ARGS ) +void DRM(irq_handler)( DRM_IRQ_ARGS ) #else -irqreturn_t DRM(dma_service)( DRM_IRQ_ARGS ) +irqreturn_t DRM(irq_handler)( DRM_IRQ_ARGS ) #endif { drm_device_t *dev = (drm_device_t *) arg; |