summaryrefslogtreecommitdiff
path: root/sys/dev/pci/drm/mach64_irq.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/pci/drm/mach64_irq.c')
-rw-r--r--sys/dev/pci/drm/mach64_irq.c6
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 d705cab7cef..a2b9aa20b5f 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"
-int mach64_driver_irq_handler(void *);
+int machdrm_intr(void *);
int
-mach64_driver_irq_handler(void *arg)
+machdrm_intr(void *arg)
{
struct drm_device *dev = arg;
drm_mach64_private_t *dev_priv = dev->dev_private;
@@ -152,7 +152,7 @@ mach64_driver_irq_install(struct drm_device * dev)
mach64_disable_vblank_local(dev, 0);
dev_priv->irqh = pci_intr_establish(dev_priv->pc, dev_priv->ih, IPL_BIO,
- mach64_driver_irq_handler, dev, dev_priv->dev.dv_xname);
+ machdrm_intr, dev, dev_priv->dev.dv_xname);
if (dev_priv->irqh == NULL)
return (ENOENT);
return (0);