summaryrefslogtreecommitdiffstats
path: root/sys/i386/isa
diff options
context:
space:
mode:
authornate <nate@FreeBSD.org>1997-01-08 16:12:56 +0000
committernate <nate@FreeBSD.org>1997-01-08 16:12:56 +0000
commit68ca277fecfa929cb5c1eb75c7aa1084221a2c22 (patch)
tree079355a2832f0e4169075953a01cc41e5d018c29 /sys/i386/isa
parent06bc53a1a80bf8b1de7effb6f315fd4ce35bd29e (diff)
downloadFreeBSD-src-68ca277fecfa929cb5c1eb75c7aa1084221a2c22.zip
FreeBSD-src-68ca277fecfa929cb5c1eb75c7aa1084221a2c22.tar.gz
Make the code more consistant by using the INTR*MASK macros througout the
code. Reviewed by: bde [ Bruce suggest removing the macros completely, but I'm not up to that task quite yet. ]
Diffstat (limited to 'sys/i386/isa')
-rw-r--r--sys/i386/isa/pcibus.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/i386/isa/pcibus.c b/sys/i386/isa/pcibus.c
index 903214c..867ff07 100644
--- a/sys/i386/isa/pcibus.c
+++ b/sys/i386/isa/pcibus.c
@@ -1,6 +1,6 @@
/**************************************************************************
**
-** $Id: pcibus.c,v 1.26 1996/06/18 01:22:28 bde Exp $
+** $Id: pcibus.c,v 1.27 1996/10/30 22:38:55 asami Exp $
**
** pci bus subroutines for i386 architecture.
**
@@ -519,7 +519,7 @@ pcibus_imask_exclude (int irq, unsigned* maskptr)
if (! (*maskptr & mask))
return (-1);
- *maskptr &= ~mask;
+ INTRUNMASK (*maskptr, mask);
update_intr_masks();
return (0);
OpenPOWER on IntegriCloud