diff options
Diffstat (limited to 'sys/dev/pci/drm/mach64_irq.c')
-rw-r--r-- | sys/dev/pci/drm/mach64_irq.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pci/drm/mach64_irq.c b/sys/dev/pci/drm/mach64_irq.c index 1759b2e8aef..909b9dbe78f 100644 --- a/sys/dev/pci/drm/mach64_irq.c +++ b/sys/dev/pci/drm/mach64_irq.c @@ -40,10 +40,10 @@ #include "mach64_drm.h" #include "mach64_drv.h" -irqreturn_t mach64_driver_irq_handler(DRM_IRQ_ARGS); +int mach64_driver_irq_handler(void *); -irqreturn_t -mach64_driver_irq_handler(DRM_IRQ_ARGS) +int +mach64_driver_irq_handler(void *arg) { struct drm_device *dev = arg; drm_mach64_private_t *dev_priv = dev->dev_private; |