aboutsummaryrefslogtreecommitdiff
path: root/sys/pccard/pccard.c
diff options
context:
space:
mode:
authorNate Williams <nate@FreeBSD.org>1997-01-11 17:59:38 +0000
committerNate Williams <nate@FreeBSD.org>1997-01-11 17:59:38 +0000
commite4410844b0a9056711b2d665148d4ec06bab44d4 (patch)
tree2cb8e39dca74608c5dc4088ea0fd3560f27631a5 /sys/pccard/pccard.c
parent8b8f8926967dc1562b714086b6776fda89da9d26 (diff)
downloadsrc-e4410844b0a9056711b2d665148d4ec06bab44d4.tar.gz
src-e4410844b0a9056711b2d665148d4ec06bab44d4.zip
Removed magic # 16 and replaced with ICU_LEN.
Notes
Notes: svn path=/head/; revision=21542
Diffstat (limited to 'sys/pccard/pccard.c')
-rw-r--r--sys/pccard/pccard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/pccard/pccard.c b/sys/pccard/pccard.c
index 6242db592575..623413e16479 100644
--- a/sys/pccard/pccard.c
+++ b/sys/pccard/pccard.c
@@ -444,7 +444,7 @@ pccard_alloc_intr(int imask, inthand2_t *hand, int unit, int *maskp)
int irq;
unsigned int mask;
- for (irq = 1; irq < 16; irq++) {
+ for (irq = 1; irq < ICU_LEN; irq++) {
mask = 1ul << irq;
if (!(mask & imask))
continue;