diff options
author | Owain Ainsworth <oga@cvs.openbsd.org> | 2008-05-27 19:51:30 +0000 |
---|---|---|
committer | Owain Ainsworth <oga@cvs.openbsd.org> | 2008-05-27 19:51:30 +0000 |
commit | 40cd71d772a03490c4608208702aa016bc497ec9 (patch) | |
tree | c6d523b911e01a26d9ff848e5d17795ef577b8a6 /sys | |
parent | db5f6db1d3e912dd792a8013b5825b3922088bfe (diff) |
return 1 when an irq's been handled, not 0.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/drm/drmP.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/pci/drm/drmP.h b/sys/dev/pci/drm/drmP.h index e2ca5e3e3b0..ae3842c596a 100644 --- a/sys/dev/pci/drm/drmP.h +++ b/sys/dev/pci/drm/drmP.h @@ -306,7 +306,7 @@ typedef void irqreturn_t; #define IRQ_NONE /* nothing */ #elif defined(__NetBSD__) || defined(__OpenBSD__) typedef int irqreturn_t; -#define IRQ_HANDLED 0 +#define IRQ_HANDLED 1 #define IRQ_NONE 0 #endif |